*,
*::after,
*::before {
    padding: 0px;
    margin: 0px;
}
.menu-header{
    display: flex;
    justify-content: center;
    height: 50px;
    background-color: black;
}
.menu-header > .menu-nav{
    width: 70%;
    display: flex;
    justify-content: center;
}

.menu-header > .menu-nav > ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    width: 100%;
    /* gap: 20px; */
    /* justify-content: space-around;
    background-color: bisque; */
}

.menu-header > .menu-nav > ul li {
    display: inline-flex;
    /* background-color: aqua; */
    width: 50%;
}
.menu-header > .menu-nav > ul li>a {
    height: 100%;
    width: 100%;
    /* text-align: center; */
    /* align-items: center; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    font-weight: bolder;
}

.menu-header > .menu-nav > ul li>a:hover{
    background-color: green; /*rgba(0, 0, 0, 0.5);*/
    color: black;
}
