nav {
    display: flex;
    height: 7vh;
    min-height: 60px;
    justify-content: flex-end;
    align-content: center;
    border-color: white;
    border-style: solid;
    border-width: 2px;
    border-radius: 50px;
    margin-left: 2vw;
    margin-right: 2vw;
    margin-top: 2vh;
    background-color: hsl(359, 23%, 47%, 50%);
}

nav .NavLogo-1 {
    display: none;
}

nav .NavLogo-2 {
    height: 3.6vw;
    margin-right: auto;
}

.container-links {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

nav a {
    height: 100%;
    padding: 0 30px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-family: Lightsans;
    font-size: larger;
}

nav a:hover {
    color: red;
}

.NavLogo {
    height: 6vh;
    margin-right: auto;
}

#active-sidebar, .sidebar-open, .sidebar-close {
    display: none;
}

@media only screen and (max-width: 982px) {
    .container-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 10;
        width: 60%;
        background-color: hsl(359, 23%, 47%, 50%);
        backdrop-filter: blur(10px);
    }

    nav .NavLogo-1 {
        display: flex;
        flex-direction: row;
        justify-self: center;
        align-self: center;
        height: 6vh;
        padding-right: 10px;
    }

    .NavLogo-2 {
        display: none;
    }
    
    .sidebar-open {
        display: flex;
        width: 32px;
        height: 32px;
        margin-left: 5vw;
        margin-right: auto;
        align-self: center;
        justify-self: center;
    }

    nav a {
        font-size: x-large;
        box-sizing: border-box;
        height: auto;
        width: 100%;
        padding: 3vh 30px;
        justify-content: flex-start;
    }

    .sidebar-open, .sidebar-close {
        display: block;
    }

    #active-sidebar:checked ~ .container-links {
        display: flex;
    }
}




















































