::-webkit-scrollbar{
    display: none;
}
*{
    transition: all .2s ease-in-out;
}
body {
    font-family: Arial, Helvetica;
    color: whitesmoke;
    background: rgb(15, 15, 15);
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
}
/*header menu*/
.animated-link {
    display: flex;
    color: whitesmoke;
    text-decoration: none;
    text-shadow: 0 1px 2px black;
    writing-mode: vertical-lr;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1;
}
.animated-link a {
    display: flex;
    background-color: red;
    color: whitesmoke;
    text-decoration: none;
    padding: 10px 5px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0 0 0 5px;
    cursor: pointer;
    transition:
    color 0.5s ease-out,
    background-color 0.15s ease-out;
}
.animated-link a:nth-child(2n) {
    display: flex;
    background-color:rgb(255, 200, 0);
    color: whitesmoke;
    padding: 10px 5px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    transition:
    color 0.5s ease-out,
    background-color 0.15s ease-out;
}
.animated-link a:nth-child(3n) {
    display: flex;
    background-color:blue;
    color: whitesmoke;
    padding: 10px 5px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    transition:
    color 0.5s ease-out,
    background-color 0.15s ease-out;
}
.animated-link a:hover:nth-child(1n) {
    color: black;
    background-color: whitesmoke;
    box-shadow: 0 0 30px black;
    text-shadow: none;
}
.animated-link a:hover:nth-child(2n) {
    color: black;
    background-color: whitesmoke;
    box-shadow: 0 0 30px black;
}
.animated-link a:hover:nth-child(3n) {
    color: black;
    background-color: whitesmoke;
    box-shadow: 0 0 30px black;
}
/*card box*/
.card {
    width: 400px;
    height: 550px;
    background: linear-gradient(90deg, red 30%, black 30%, blue);
    border: 1px solid black;
    border-radius: 20px;
    box-shadow: 0 0 10px grey;
    margin: 18vh auto;
    text-shadow: 0 1px 2px black;
    animation: 4s funkyY ease-in-out infinite, 1.5s glow ease-in-out infinite;
}
@keyframes funkyY {
    50% {
       transform: translateY(10px);
    }
}
@keyframes glow {
    50% {
        box-shadow: 0 0 20px grey;
    }
}
/* text in card box*/
h1 {
    position: absolute;
    text-align: left;
    font-size: 60px;
    writing-mode: vertical-lr;
    margin-left: 20px;
    padding: 35px 0;
    z-index: 1;
    white-space: nowrap;
    letter-spacing: 4px;
}

h2 {
    position: absolute;
    right: 0;
    text-align: right;
    padding: 10px 20px;
    font-size: 25px;
}
h3 {
    position: absolute;
    right: 0;
    top: 37%;
    text-align: right;
    font-size: 10px;
    padding: 0 24px;
    white-space: nowrap;
    min-height: 100px;
    margin-top: -15px;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 20px;
    background: rgb(255, 200, 0);
    clip-path: inset(0 0 80% 0);
    color: black;
    text-shadow: none;
    font-weight: 500;
    user-select: text;
    z-index: 2;
    -webkit-user-select: text;
    cursor: text;
}
h4 {
    width: 160px;
    position: absolute;
    right: 20%;
    top: 50%;
    font-size: 14px;
    text-align: center;
    color: blue;
    z-index: 0;
    text-shadow: none;
    padding: 5px;
}
h4 span {
    font-size: 600%;
}
.rfid {
    position: absolute;
    width: 50px;
    height: 70px;
    border-radius: 10px;
    z-index: 1;
    background: linear-gradient(135deg, rgb(255, 227, 127), rgb(103, 64, 0));
    bottom: 100px;
    left: 95px;
    border: 1px solid black;
    overflow: hidden;
    color: transparent;
    text-shadow: none;
    box-shadow: 0 0 0 white, inset 0 0 3px black;
    color: rgba(0, 0, 0, 0.1);
}
.rfid:hover {
    box-shadow: 0 0 15px white, inset 0 0 5px white;
    color: rgba(245, 245, 245, 0.6);
    text-shadow: none;
    border: 1px solid white;
    cursor: url(🔥);
    animation: .1s funkyY linear infinite;
}
.mastercard2 {
    position: absolute;
    width: 60px;
    height: 60px;
    background: red;
    border-radius: 50%;
    z-index: 0;
    bottom: 10px;
    right: 10px;
}
.mastercard {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 200, 0, 0.8);
    border-radius: 50%;
    z-index: 0;
    bottom: 50px;
    right: 10px;
}
.paypal {
    position: absolute;
    bottom: 90px;
    right: -15px;
    z-index: -1;
    width: 120px;
}
.wifi {
    position: absolute;
    width: 40px;
    bottom: 50px;
    left: 100px;
}
h1:hover, h2:hover {
    rotate: -0.5deg;
}
h3:hover {
    clip-path: inset(0 0 0 0);
}
h4:hover {
    color: white;
    rotate: 1deg;
}
/*media query*/
@media (max-width: 500px) {
    .card {
        width: 250px;
        height: 350px;
    }
    h1 {
        font-size: 35px;
        letter-spacing: 3px;
        margin-top: -5px;
    }
    h2 {
        font-size: 15px;
    }
    h3 {
        font-size: 10px;
        padding: 1px 4px;
        letter-spacing: 1px;
    }
    h4 {
        font-size: 9px;
        top: 50%;
        right: 20%;
        width: 90px;
    }
    .rfid {
        width: 30px;
        height: 41px;
        bottom: 70px;
        left: 60px;
        border: .5px solid black;
        border-radius: 5px;
    }
    .mastercard, .mastercard2 {
        width: 40px;
        height: 40px;
    }
    .mastercard {
        bottom: 35px;
    }
    .paypal {
        width: 80px;
        right: -5px;
        bottom: 60px;
    }
    .wifi {
        width: 23px;
        bottom: 40px;
        left: 65px;
    }
}
/*animated background*/
.scrollR {
    white-space: nowrap;
    font-size: 200px;
    animation: 120s slide infinite linear;
    z-index: -1;
    -webkit-text-stroke: 1px red;
    color: transparent;
    position: fixed;
    top: 0;
}
.scrollY {
    white-space: nowrap;
    font-size: 200px;
    animation: 120s slide infinite linear, 30s pathy infinite linear;
    z-index: -1;
    -webkit-text-stroke: 1px rgb(255, 200, 0);
    color: transparent;
    position: fixed;
    top: 0px;
}
.scrollB {
    white-space: nowrap;
    overflow: hidden;
    font-size: 200px;
    animation: 120s slide infinite linear, 60s pathb infinite linear;
    z-index: -1;
    -webkit-text-stroke: 1px blue;
    color: transparent;
    position: fixed;
    top: 0px;
}
.scrollR2 {
    white-space: nowrap;
    font-size: 100px;
    animation: 80s slide2 infinite linear;
    z-index: -1;
    -webkit-text-stroke: 1px red;
    color: transparent;
    position: fixed;
    top: -80px;
}
.scrollY2 {
    white-space: nowrap;
    font-size: 100px;
    animation: 80s slide2 infinite linear, 40s pathy2 infinite linear;
    z-index: -1;
    -webkit-text-stroke: 1px rgb(255, 200, 0);
    color: transparent;
    position: fixed;
    top: -80px;
}
.scrollB2 {
    white-space: nowrap;
    overflow: hidden;
    font-size: 100px;
    animation: 80s slide2 infinite linear, 20s pathb2 infinite linear;
    z-index: -1;
    -webkit-text-stroke: 1px blue;
    color: transparent;
    position: fixed;
    top: -80px;
}
@keyframes pathy {
    100%
    {
        clip-path: inset(0 0 0 100%);
    }
    50%
    {
        clip-path: inset(0 0 0 0);
    }
    0%
    {
        clip-path: inset(0 100% 0 0);
    }
}
@keyframes pathb {
    100%
    {
        clip-path: inset(0 0 0 100%);
    }
    50%
    {
        clip-path: inset(0 0 0 0);
    }
    0%
    {
        clip-path: inset(0 100% 0 0);
    }
}
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-25.25%);
    }
}
@keyframes pathy2 {
    100%
    {
        clip-path: inset(0 0 0 100%);
    }
    50%
    {
        clip-path: inset(0 0 0 0);
    }
    0%
    {
        clip-path: inset(0 100% 0 0);
    }
}
@keyframes pathb2 {
    100%
    {
        clip-path: inset(0 0 0 100%);
    }
    50%
    {
        clip-path: inset(0 0 0 0);
    }
    0%
    {
        clip-path: inset(0 100% 0 0);
    }
}
@keyframes slide2 {
    from {
        transform: translateX(-25.25%);
    }
    to {
        transform: translateX(0%);
    }
}