nav {
    width: 100%;
    height: 5rem;
    background-color: var(--navbar-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.25rem;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1000px;
}

.nav-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}


.after_login {
    gap: 0 !important;
}

nav a {
    margin: 0 0.9375rem;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1rem;
    display: inline-block;
    text-align: center;
    /*width: 8.75rem;*/
}

nav a:hover {
    font-weight: bold;
}

.nav-icon {
    font-size: x-large;
}

.nav-icon:hover{
    text-shadow:
        -1px -1px 0 #1976ca,
        1px -1px 0 #1976ca,
        -1px 1px 0 #1976ca,
        1px 1px 0 #1976ca;
    -webkit-text-stroke: 1px #1976ca;
}

.login {
    background-color: var(--button-color);
    color: white;
    padding: 0.625rem 1rem;
    border-radius: 0.625rem;
    width: auto;
    text-align: center;
}

.same_width {
    width: 200px;
}

.justify-left {
    justify-content: left;
}

.justify-right {
    justify-content: right;
}