body {
    font-family: sans-serif;
    background-color:#f8f8f8;
    display:flex;
    flex-direction: column;
    align-items:center;
    margin: 0;
}

a {
    text-decoration: none;
}

.menu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    z-index: 999;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}

.menu > a > #menuLogo {
    align-self: center;
    width: 60px;
    margin: 0 30px;
}

.menu > a {
    color: #333;
    font-size: 14pt;
    width: 100px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    transition: border-bottom-color 0.2s;
}

.menu > a:hover:not(.logo):not(.selected) {
    border-bottom: #333 5px solid;
}

.menu>a.selected {
    color: #ef1a38;
    border-bottom: #ef1a38 5px solid;
}

.menu>a.logo:hover {
    background-color: #ccc;
}