.discl {
    padding: 1em 12%;
    display: flex;
    flex-direction: row;
    gap: 3em;
    justify-content: center;
    background-color: #664DFF;
    align-items: center;
    font-weight: bold;
    color: white;
    font-size: 1em;
    text-transform: uppercase;
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1.4em 13%;
    background-color: black;
    border-bottom: 2px solid #6F3CF6;
}

.navbar__logo {
    display: flex;
    color: white;
    align-items: center;
    gap: 10px;
}

.navbar__logo a{
    font-family: "Archivo Black", serif;
    font-size: 1.5em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.burger {
    display: none;
    z-index: 100;
}

.navbar__links {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 3em;
}

.navbar__links a {
    color: white;
    text-decoration: none;
    font-size: 1.5em;
}

.link-selected {
    color: #F5C861 !important;
}

.navbar__links a:hover{
    color: #664DFF;
}

@media (max-width: 1300px) {
    .discl, .navbar {
        padding: 1.1em 5%;
    }
}

@media (max-width: 1000px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .navbar__links {
        gap: 1em;
    }

    .discl {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: row;
        position: relative;
    }

    .navbar__logo {
        font-size: 10px;
        gap: 5px;
    }

    .navbar__logo img {
        width: 35px;
    }

    .discl {
        gap: 0.7em;
        font-size: 10px;
        text-align: left;
    }

    .discl img {
        width: 35px;
    }

    .navbar__links {
        display: none;
        position: absolute;
        top: 105%;
        z-index: 10;
        left: 0;
        flex-direction: column;
        align-items: center;
        width:100%;
        background-color: black;
        height: 200px;
        justify-content: center;
    }

    .navbar__links.show {
        display: flex;
    }

    .burger {
        display: unset;
    }
}