.logo {
    width: 75px;
    height: 75px;
}

.header {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    /* padding: 0 1rem 0 1rem; */
    height: 100px;
    border-bottom: 1px solid var(--input);
    background-color: var(--header);
}

.header-left {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    cursor: pointer;
}
#hamburger-container {
    width: 100%;
    display: flex;
    /* justify-content: space-between; */
}

.header-brand {
    font-size: 1.5rem;
}

.header-center {
    height: 100px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.header-center a {
    margin: 0 1rem 0 1rem;
    font-size: 1rem;
    cursor: pointer;

}

.header-center a:hover {
    color: var(--link-color);
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 1rem;
    width: 250px;
    position: relative;
}

.header-left, .header-right {
    width: 250px;
}

.profile-icon i {
    font-size: 1rem;
}

.current {
    text-decoration:underline;
}
#hamburger {
        display: none;
}

.overflow {
    overflow: hidden;
}


@media only screen and (max-width: 600px) {
    .header-left {
        width: 70%;
    }
    .header {
        position: relative;
        z-index: 999;
    }
    #hamburger-container {
        background-color: var(--background);
        border-bottom: 2px solid var(--input);
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        margin-top: 100px;
        position: absolute;
        z-index: -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100vh;
        transform:scaley(0);
        transform-origin: top;
        transition: transform 0.35s;
    }
    #hamburger-container.hamburger-open {
        transform: scaley(1);
    }
    #hamburger-container div {
        margin-bottom: 3rem;
        text-align: center;
        font-size: 1.5rem;
    }
    .header-right {
        width: 100%;
        display: block;
        position: absolute;
        padding-top: 3rem;
        bottom: 3rem;
        border-top: 2px solid var(--input);
    }
    .header-right i {
        font-size: 1.5rem;
    }
    .header-center {
        flex-direction: column;
        height: fit-content;
    }
    .header-center a {
        margin-top: 2rem;
        margin-bottom: 2rem;
        font-size: 1.5rem;
        width: 100%;
        padding-bottom: 3rem;
        border-bottom: 2px solid var(--input);
    }

    #hamburger {
        display: flex;
        align-items: center;
        width: 30%;
        justify-content: center;
        
    }
    #hamburger i {
        font-size: 2rem;
        cursor: pointer;
    }
    .splitter {
        display: none;
    }
  }