#header-line{
    background-color: #FDE311;
    height: .6rem;
}

#menu-container {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;

    margin-right: 0.75rem;
    margin-top: 0.75rem;

    background-color: #EDEDED;

    border-radius: 0.25rem;

    box-shadow: 0 0 1rem -0.5rem #333333;
}

#menu-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    min-width: 17rem;
    max-width: 25rem;
    
    padding: 0.5rem;
    padding-right: 1rem;
    

    align-items: center;

    color: #333333;
    background-color: #FFFFFF;

    border-radius: 0.25rem;
}

#menu-usericon {
    font-size: 1.5rem;
}

#menu-username {

    margin-left: 1rem;
    margin-right: 1rem;

}

#menu-button {
    font-size: 1.8rem;
    text-align: right;

    cursor:pointer;
}

.menu-list {

    overflow: hidden;

    max-height: 0;

    padding-inline-start: 1rem;

    color: #333333;

    transition: max-height .25s ease-out;

    margin-block-start: 0;
    margin-block-end: 0;
}

.menu-list.active {

    max-height: 100px;

    transition: max-height .25s ease-in;
}

.menu-list li {
    color: #333333;
    list-style: none;
}

.menu-list li a {
    color: #333333;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.75rem;
    margin-left: .5rem;
    font-size: 1rem;
    text-decoration: none;
}

.menu-list li a:hover {
    color: #E90802;
}