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

table {
    width: 100%;
}

tr {
    text-align: center;
}

#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: pulse 3s infinite;
}

@keyframes pulse {
    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);
}