::-webkit-scrollbar {
    width: 0.6em;
}

::-webkit-scrollbar-track {
    background: #101728;
    border-radius: 100px;
    margin-block: .5em;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(rgb(201, 168, 49), rgb(255, 217, 82), rgb(255, 248, 221));
    border-radius: 100px;
}

body {
    font-family: 'poppins', sans-serif;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 150vh;
    background-color: #101728;
    overflow-x: hidden;
    color: #333;
}

header {
    height: 100vh;
    width: 100vw;
}

.background {
    z-index: -1;
    opacity: 0.15;
    padding-top: 5px;
    background-image: url(../IMAGE/QRlod-backlop.png);
    background-size: cover;
    width: 100%;
    height: 100%;
    color: aliceblue;
    background-position: center;
}

.logo {
    z-index: 2;
}

.logo img {
    margin-top: 20px;
    width: 350px;
}

.navbar {
    position: absolute;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    align-items: center;

}

.navbar .nav-links ul {
    display: flex;
}

.navbar .nav-links ul li {
    margin: 0 2px;
    list-style-type: none;
}

.nav-links ul a {
    color: white;
    text-decoration: none;
    display: contents;
}

.nav-item {
    -webkit-text-stroke: 9px rgba(255, 255, 255, 0.221);
    font-family: 'Monomaniac One', sans-serif;
    color: white;
    font-size: 25px;
    padding: 29px;
    flex: 1;
}

.qrlod-game {
    background: url(../IMAGE/trésor.png) no-repeat;
    z-index: 999;
    position: relative;
    background-position: center;
    background-size: cover;
    border-radius: 30px;
    transition: all .5s ease;
    width: 18%;
    height: auto;
}

.gide {
    background: url(../IMAGE/sup.png) no-repeat;
    z-index: 999;
    position: relative;
    background-position: center;
    background-size: cover;
    border-radius: 30px;
    transition: all .5s ease;
    width: 18%;
    height: auto;
}

.dicord {
    background: url(../IMAGE/discord.png) no-repeat;
    z-index: 999;
    position: relative;
    background-position: center;
    background-size: cover;
    border-radius: 30px;
    transition: all .5s ease;
    width: 18%;
    height: auto;
}

.adult {
    background: url(../IMAGE/Moins18.png) no-repeat;
    z-index: 999;
    position: relative;
    background-position: center;
    background-size: cover;
    border-radius: 30px;
    transition: all .5s ease;
    width: 18%;
    height: auto;
}

.navbar .nav-links ul li:hover {
    transform: translate(0, -8px);
    box-shadow: 10px 10px 40px 5px rgba(255, 238, 155, 0.758);
}

.menu {
    z-index: 999;
    display: none;
    position: absolute;
    width: 40px;
    top: 50px;
    right: 50px;
}


@media screen and (max-width: 900px) {
    .navbar {
        padding: 0;
    }

    .navbar .menu {
        display: block;
    }

    .nav-links {
        z-index: 2;
        top: 0;
        left: 0;
        position: absolute;
        background-color: rgba(0, 0, 0, 0.491);
        backdrop-filter: blur(3px);
        width: 100%;
        height: 130vh;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease;
    }

    #nav-links {
        margin-left: -100%;
    }

    #nav-links.show {
        margin-left: 0;
    }

    .nav-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar .nav-links ul li {
        margin: 2px 0;
        font-size: 35px;
    }

    .gide,
    .adult,
    .dicord,
    .qrlod-game {
        width: 100px;
        max-width: 200px;
        min-height: 60px;
    }
}

.big {
    position: absolute;
    z-index: 1;
    border-radius: 5px;
    color: white;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 290px;
}

.search-box {
    width: 80%;
    background: linear-gradient(140deg, rgb(255, 255, 255), #ae9912);
    border-radius: 10px;
}

.row {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

input {
    flex: 1;
    height: 30px;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 18px;
}

button {
    background: transparent;
    border: 0;
    outline: 0;
}

button .fa-solid {
    width: 25px;
    color: rgb(255, 255, 255);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.5s;
}

.fa-solid:hover {
    transform: scale(1.3);
}

::placeholder {
    color: #bca515;
}

.result-box ul {
    border-top: 1px solid #bca515;
    padding: 15px 10px;
}

.result-box ul li {
    list-style: none;
    border-radius: 3px;
    padding: 15px 10px;
    cursor: pointer;
    color: #bca515;
    transition: all 0.5s;
}

.result-box ul li:hover {
    background: #bca515;
    color: #ffffff;
}

.result-box {
    max-height: 300px;
    overflow-y: scroll;
}

.result-box li {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.result-box img {
    width: 50px;
    height: 100px;
    object-fit: cover;
    margin-right: 20px;
}