#header-container {
    background: black;
    backdrop-filter: saturate(180%) blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
}

.logo {
    height: 5rem;
}

.navbar-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: space-evenly;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
}

.navbar-link {
    text-decoration: none;
    color: #c1bdbd;
    font-size: 16px;
    transition: 0.4s;
}

.navbar-link:hover {
    color: white;
}

.navbar-link:visited {
    color: white;
    text-decoration: none;
}

.active {
    color: white;
    border-bottom: 3px solid white;
}

.hide-desktop {
    display: none;
}

.hide-desktop div {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 5px;
}

@media screen and (max-width: 700px) {
    .navbar-list {
        justify-content: space-around;
    }
    .navbar-list {
        padding: 0;
    }
    .half-width {
        width: 50%!important;
    }
    .hide-mobile {
        display: none;
    }
    .hide-desktop {
        display: block;
    }
}