body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: url('../images/nexisBG.jpg');
    background-repeat: round;
    background-size: auto;
    animation: backgroundZoom 20s infinite forwards;
}

@keyframes backgroundZoom {
    0% {
        transform: scale(1.0);
    }

    50% {
        transform: scale(1.2);
    }

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

.body-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-block {
    margin-top: 30px;
    backdrop-filter: blur(15px);
    padding: 25px;
}

.head-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border: 3px solid;
    border-color: rgba(255, 255, 255, 1);
    border-radius: 200px 15px 15px 200px;
    overflow: hidden;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 1230px) {
  .head-block {
    border-radius: 15px 15px 15px 15px;
  }
}

.head-block p {
    text-align: center;
}

.logo img {
    height: 200px;
    border-radius: 100%;
    float: left;

}

h1 {
    text-align: center;
    padding: 10px;
    font-family: "Zen Dots", serif;
    font-size: 40px;
    color: white;
}

.description {
    text-align: center;
    line-height: 1.5;
    color: white;
    font: 1em sans-serif;
    margin: 20px;
}

.bot-stats-container {
    margin: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.bot-stats {
    padding: 10px;
    margin: 10px;
    border-radius: 40px;
    background-color: rgba(0, 0, 0, 0.1);
    text-align: center;
    flex-grow: 1;
    font-family: "Michroma", serif;
}

.bot-status{
    flex-grow: 1;
}

.users-count{
    flex-grow: 2;
}

.servers-count{
    flex-grow: 2;
}

.bot-status-icon{
    font-size: 20px;
    color: rgba(170, 255, 175, 0.8);
    animation: onlineIconOpacity 3s infinite;
}

@keyframes onlineIconOpacity {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.bot-stats p {
    margin: 0px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.bot-statuss, .servers-count, .users-count{
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-top: 50px;
}

.links button {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    padding: 20px 30px;
    font-size: 16px;
    color: white;
    background-color: rgba(0, 215, 255, 0.5);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-family: "Michroma", serif;
    margin: 10px;
    opacity: 0;
    animation: iconOpacity 1s forwards;
}

.links i{
    padding: 5px;
    font-size: 17px;
}

.links button:hover {
    transition: .3s;
    background-color: rgba(0, 215, 255, 1);
}

.bot-func-container {
    display: flex;
    flex-wrap: wrap;
    height: fit-content;
    margin-top: 30px;
}

.block {
    width: 300px;
    flex-grow: 1;
    padding: 10px;
    margin: 5px;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 10px;
    animation: backgroundOpacity 4s forwards;
}

@keyframes backgroundOpacity {
    from {
        background-color: rgba(0, 0, 0, 0);
    }

    to {
        background-color: rgba(0, 0, 0, 0.1);
    }
}

.block p {
    text-align: center;
    font-size: 50px;
    color: white;
}

.block span {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-family: Arial;
}

.block-icon,
.block-info {
    opacity: 0;
    animation: iconOpacity 1s forwards;
}

.block:nth-child(1) p {
    animation-delay: 0.5s;
}

.block:nth-child(2) p {
    animation-delay: 0.8s;
}

.block:nth-child(3) p {
    animation-delay: 1.1s;
}

.block:nth-child(1) span {
    animation-delay: 0.7s;
}

.block:nth-child(2) span {
    animation-delay: 1s;
}

.block:nth-child(3) span {
    animation-delay: 1.3s;
}

.links:nth-child(1) button{
    animation-delay: 1.2s;
}

.links:nth-child(2) button{
    animation-delay: 1s;
    background-color: rgba(62, 255, 225, 0.6);
}

.links:nth-child(2) button:hover{
    animation-delay: 1s;
    background-color: rgba(62, 255, 225, 1);
}

.links:nth-child(3) button{
    animation-delay: 1.2s;
}

.links #donate-button{
    animation-delay: 1.2s;
}

@keyframes iconOpacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#donate-button{
    opacity: 0;
    animation: iconOpacity 2s forwards;
}