.image-shadow::after {
    content: "";
    background: linear-gradient(to bottom, transparent, #000 70%);
    z-index: 1;
    width: 100%;
    left: calc(16px * -1);
    height: 21rem;
    bottom: -6rem;
    pointer-events: none;
    position: absolute;
}

body {
    overflow-x: hidden !important;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: 1;
    pointer-events: none;
}

.button-server {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 0px;
    margin: 10px 0px;
    border-radius: 10px;
    transform: rotate(-2deg);
    width: 325px;
}

.button-server img {
    position: absolute;
    left: -62px;
    width: 115px;
    top: auto;
}

.pc {
    background: linear-gradient(90deg, #515151 0%, rgb(0 135 255 / 0%) 100%);
    border: 1px solid #fff;
}

.wl {
    background: linear-gradient(90deg, #515151 0%, rgb(0 135 255 / 0%) 100%);
    border: 1px solid #fff;
}

.button-server h3,
.button-server h4 {
    margin: 0;
    color: white;
}

#leaf {
    width: 100px;
    height: 100px;
    background-image: url('../images/home/logo/');
    background-size: contain;
    position: absolute;
    z-index: 9999;
    pointer-events: none;
}

#title {
    transition: transform 0.3s ease;
}

#title:hover {
    transform: scale(1.1);
}

@keyframes bounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
        /* Aumenta el tamaño en un 20% */
    }

    100% {
        transform: scale(1.1);
        /* Devuelve el tamaño al original */
    }
}

@media (max-width: 768px) {
    #leaf {
        display: none;
    }
}

@media (max-width: 1024px) {
    #leaf {
        display: none;
    }
}