@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,500;0,700;1,700&family=Source+Code+Pro:wght@200;300&family=Titillium+Web:wght@200&display=swap');

::selection {
    color: black;
    background-color: rgb(253, 255, 110);
}

body {
    background-color: black;
    color: white;
    font-family: 'Roboto Mono', monospace;
}

h1 {
    padding-top: 5%;
    margin: 1%;
    color: rgb(238, 238, 149);
}

.login {
    background-color:black;
}

.href {
    padding: 1rem;
    font-weight: bold;
    color: rgb(255, 255, 255);
}

.href:hover {
    color: rgb(137, 255, 175);
    transition: 2s;
    background-color: black;
    text-decoration: none;
    border-radius: 10px;
}

.link {
    font-weight: bold;
    color:rgb(255, 255, 255);
    text-decoration: overline;
}
.link:hover {
    color: rgb(137, 255, 175);
    transition: 2s;
}

.games {
    position: sticky;
}

.games:nth-child(2) {
    height: 100vh;
    width: 100%;
    bottom: 0;
    background: url(/static/valo.jpg);
    background-position: center;
    z-index: -2;
}


.games:nth-child(3) {
    width: 100%;
    height: 100vh;
    bottom: 0;
    background-color: black;
    background: url(/static/pubg.webp);
    background-repeat: no-repeat;
    background-position: center;
    z-index: -3;
}

.games:nth-child(4) {
    width: 100%;
    height: 100vh;
    bottom: 0;
    background: url(/static/cod.jpeg);
    background-color: black;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -4;
}

.games:nth-child(5) {
    height: 60vh;
    width: 100%;
    bottom: 0;
    background-color: rgb(44, 44, 44);
    color: white;
    z-index: -5;
}

.games h1 {
    text-decoration: overline rgb(255, 112, 112);
    padding-top: 3%; 
    font-size: 45px;
}

.games p {
    color: #86fff9;
    font-size: 20px;
}

.games h3 {
    text-align: left;
    margin-left: 15%;
    color: lightyellow;
}

.icon {
    height: 130px;
    width: 530px;
}

.head-games {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px;
    position: fixed;
    height: 12%;
    width: 10%;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(100px);
    border-radius: 20px;
    box-shadow: 4px 2px 12px 2px rgba(255, 255, 255, 0.1);
}

.logo--img {
    width: auto;
    height: auto;
}

@media (max-width: 768px) {
    body {
        font-size: 20px;
    }   

    h1 {
        padding-top: 5rem;
    }

    .icon {
        padding-top: 1rem;
    }
    .href {
        font-size: 25px;
        width: 40%;
        padding: 2rem;
        text-overflow: clip;
        
    }
    .div {
        width: 30%;
    }
    .games p {
        font-size: 15px;
    }
    .games h1 {
        padding-top: 3rem;
        font-size: 25px;
    }

    .games:nth-child(3) {
        background-size: 700px 600px;
        background-color: black;
        height: 100vh;
    }

    .games:nth-child(4){
        background-size: 700px 600px;
        background-color: black;
        height: 100vh;
    }

    .games:nth-child(5) {
        height: 90vh;
    }
    .head-games {
        height: 15%;
        width: 20%;
    }
}