div#header {
    height: 80px;
    background-color: var(--white);

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}

div#header > div#logo {
    height: 50px;
    min-width: 225.883px;
    margin-left: 30px;
}

div#header > div#logo img {
    height: 100%;
    width: 100%;
    overflow: visible;
}

div#header > div#nav {
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

div#header > div#nav > a {
    display: flex;
    justify-content: center;
    align-items: center;
    
    line-height: 100%;
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 10px;
    padding-top: 12px;

    color: var(--eerieBlack);
    font-weight: 600;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;

    transition: var(--normalTransition);
}

div#header > div#nav > a:hover {
    border-bottom: 2px solid var(--eerieBlack);
    transition: var(--normalTransition);
}

div#header > div#nav :last-child {
    color: var(--avocado);
}

div#header > div#nav :last-child:hover {
    border-bottom: 2px solid var(--avocado);
}

div#header > div#navBtn {
    display: none;
    margin-right: 20px;
    font-size: 25px;
}

div#header > div#nav > a#closeMenu {
    color: var(--poppy);
    border-bottom-color: transparent;
}

div#header > div#nav > a#closeMenu:hover {
    border-bottom-color: var(--poppy);

}

div#header > button#openMenu {
    font-size: 25px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    margin-right: 20px;
    transition: var(--normalTransition);
}

div#header > button#openMenu:hover {
    color: var(--avocado);
}