.lists{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    align-items: center;
    background-image: url(../images/serverlist.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
}

.lists .heading{
    margin: 30px;
    font-weight: bolder;
    font-size: 8vh;
    color: white;
    text-decoration: underline;
    margin-top: 90px;
    font-family: "Oswald", sans-serif;
    font-variant: small-caps;
    pointer-events: none;
}
.lists .options{
    margin: 10px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 100px;
    padding: 10px;
    text-decoration: none;
    border-bottom: 4px solid rgb(51, 84, 156);
}
.lists .options .btn{
    padding: 20px;
    border-radius: 5vw;
    width: 10vw;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 20px;
    background: transparent;
    text-decoration: none;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(1px);
    font-weight: bold;
    transition: all 0.5s;
}
.lists .options .btn:hover{
    background: transparent;
}
.lists .options .btn a{
    color: white;
    text-decoration: none;
    
}
.lists .sec-name{
    margin: 20px;
    border: 2px solid rgb(59, 59, 201);
    width: 60vw;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background: rgba(74, 74, 195, 0.35);
    backdrop-filter: blur(1px);
    color: beige;
    padding: 15px;
    border-radius: 15px;
    font-size: 25px;
    margin-top: 40px;
    text-align: center;
    font-weight: bolder;
    box-shadow: 0px 0px 100px rgb(42, 42, 180);
    pointer-events: none;
}
.cards-section{
    display: flex;
    flex-direction: row; 
    justify-content: center; 
    gap: 30px; 
    width: 100%;
    flex-wrap: wrap;
}
.cards-section .cards{
    width: 350px;
    height: 250px;
    border-radius: 20px;
    background-color: rgba(83, 106, 86, 0.3);
    border: 1px solid rgba(83, 93, 106, 0.5);
    padding: 30px; 
    box-sizing: border-box; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    transition: all 0.5s;
}


.cards-section .cards:hover{
    transform: translateY(-10px);
    box-shadow: 0px 0px 100px rgb(232, 44, 44);
    background-image: url(../images/home.png);
}
.cards-section .cards .bottom{
    display: flex;
    justify-content: space-between;
    gap: 70px;
    text-align: center;
    border-top: 2px solid black;
}
.cards-section .cards .bottom img{
    height: 30px;
    background-color: rgb(16, 56, 176);
    margin: 1px;
}
.cards-section .cards .bottom p{
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    color: whitesmoke;
}
.cards-section .cards h5{
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    border-bottom: 2px solid black;
    color: #96cb59;
}
.cards-section .cards img{
    height: 100px;
    margin: 10px;
    border-radius: 50px;
}
footer{
    text-align: center;
    background-image: url(../images/serverlist.png);
    color: white;
    pointer-events: none;
}
footer span{
  color: aqua;
  font-weight: bold;
}

.snow {
        position: fixed;
        width: 100%;
        height: 100%;
        pointer-events: none;
        top: 0;
        left: 0;
    }

    .snowflake {
        position: absolute;
        top: -10px;
        color: white;
        user-select: none;
        opacity: 0.8;
        animation-name: fall, sway;
        animation-timing-function: linear, ease-in-out;
        animation-iteration-count: infinite, infinite;
    }

    @keyframes fall {
        to {
            transform: translateY(110vh);
        }
    }

    @keyframes sway {
        0%, 100% {
            margin-left: 0;
        }
        50% {
            margin-left: 60px;
        }
    }

    
    .snowflake:nth-child(3n) {
        font-size: 12px;
        animation-duration: 10s, 4s;
    }

    .snowflake:nth-child(3n+1) {
        font-size: 16px;
        animation-duration: 14s, 6s;
    }

    .snowflake:nth-child(3n+2) {
        font-size: 20px;
        animation-duration: 18s, 8s;
    }

.goTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #2f73a7;
    color: #fff;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 18px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    font-weight: bolder;
    border: 2px solid black;
}

.goTopBtn:hover {
    opacity: 1;
}


html {
    scroll-behavior: smooth;
}
