*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#topHeader
{
    border-bottom: 1px solid black;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background-color: #A4B465;
}

h1
{
    font-family: Georgia;
    font-size: 2rem;
    color: #F5ECD5;
}

#menu
{
    border-bottom: 1px solid black;
    padding: 1rem;
    display: none;
    background-color: #626F47;
}

#showMenuIcon
{
    align-self: center;
    justify-self: center;
}

#showMenuIcon:hover
{
    cursor: pointer;
}

#hideMenuIcon
{
    align-self: center;
    justify-self: center;
    display: none;
}

#hideMenuIcon:hover
{
    cursor: pointer;
}

#bottomHeader
{
    border-bottom: 1px solid black;
    padding: 1rem;
    background-color: #A4B465;
}

h2
{
    font-family: Georgia;
    font-size: 1rem;
    color: #F5ECD5;
}

ul
{
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    list-style: none;
}

li
{
    font-family: Georgia;
    font-size: 1rem;
    color: #F5ECD5;
}

a
{
    text-decoration: none;
    color: #F5ECD5;
}

#closeMenu:hover
{
    cursor: pointer;
}