body {
    background-image: url("assets/img/style/bg.jpg");
}

table {
    width: 100%;
}

tr {
    text-align: center;
}

#clicker-text {
    font-size: 2rem;
    color: white;
    
    transform: scale(1);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.95);
    }
}

#btn-clicker {
    cursor: pointer;
    font-size: 4rem;
    border-radius: 10px;
}

#btn-clicker:hover {
    color: white;
    border: 0px;
    border-radius: 10px;
    background-image: url("assets/img/style/glitter-pink.gif");
}

#test-row {
    padding-top: 60px;
}

#test-text {
    position: relative;
    -webkit-box-reflect: below -12px linear-gradient(transparent, rgba(0, 0, 0, .2));
}

#test-text span {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 2em;
    text-transform: uppercase;
    animation: wave 2s ease-in-out infinite;
    animation-delay: calc(.1s*var(--i));
}

@keyframes wave {
    0% {
        transform: translateY(0px);
    }

    20% {
        transform: translateY(-20px);
    }

    40%,
    100% {
        transform: translateY(0px);
    }
}

#kabuto-row {
    padding-top: 80px;
}

#kabuto {
    font-size: 2rem;
    cursor: pointer;

    animation: swirl 4s infinite;
}

@keyframes swirl {
    0% {
      transform: rotateX(-20deg) rotateY(20deg);
    }

    100% {
      transform: rotateX(-20deg) rotateY(740deg);
    }
  }

#pairings-row {
    padding-top: 80px;
}

#pairings {
    cursor: pointer;
    font-size: 30px;
    color: white;
    border: 0px;

    background-image: repeating-linear-gradient(45deg, violet, indigo, blue, green, yellow, orange, red, violet);
    background-size: 800% 800%;
    animation: rainbow 4s ease infinite;
}

#somoni-text {
    font-size: 3rem;
    text-align: center;

    background-image: repeating-linear-gradient(45deg, violet, indigo, blue, green, yellow, orange, red, violet);
    background-size: 800% 800%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 4s ease infinite;
}

@keyframes rainbow {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 25%
    }

    100% {
        background-position: 0% 50%
    }
}

#somoni {
    width: 300px;
    height: auto;

    animation: pulse2 3s infinite;
}

@keyframes pulse2 {
    0% {
        transform: scale(0.95);
    }

    70% {
        transform: scale(1.75);
    }

    100% {
        transform: scale(0.95);
    }
}

#alhamdulillah-row {
    padding-top: 80px;
}

#alhamdulillah {
    font-size: 30px;
    color: white;
    background-color: green;
    border: green 1px solid;
    border-radius: 10px;
    cursor: pointer;
}

#alhamdulillah:hover {
    transform: scale(1.5);
}