
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    padding: 0.70rem 10vw;
    box-shadow: 0 0 30px rgba(178, 178, 178, 0.5);

    
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px 0;
    background-color: #fff;
    z-index: 1000;

  }


.brand-title-tag {
    font-size: 1.5rem;
    margin: .5rem;
    font-weight: 600;
    text-decoration: none;
}

.navbar-links {
    height: 100%;
}

.navbar-links ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    display: block;
    text-decoration: none;
    font-size: 17.3px;
    font-weight: 500;
    min-width: 8ch;
    color: #000;
    padding: 1rem;
    text-transform: uppercase;
}

.navbar-links li a:focus-within {
    color: #000;
}

.navbar-links li a:hover:not(:focus) {
    border-bottom: 2px solid currentColor;
}

.toggle-button {
    position: absolute;
    top: .75rem;
    right: 3rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: #000;
    border-radius: 10px;
}

@media (max-width: 800px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links ul li {
        text-align: center;
    }

    .navbar-links ul li a {
        padding: .5rem 1rem;
    }

    .navbar-links.active {
        display: flex;
    }
}
