/* Стили для верхнего меню */

#menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;
    position: fixed;
    top: 0;
    height: 2em;
    width: 100%;
    z-index: 999;
    opacity: 0;
    display: flex;
    justify-content: space-evenly;
}

#menu li {
    flex-grow: 1;
    text-align: center;
}

#menu li a {
    display: block;
    color: white;
    padding: 0.5em;
    text-decoration: none;
    line-height: 1em;
}

#menu li a:hover:not(.menu_active) {
    background-color: rgba(255, 255, 255, 0.5);
    font-family: 'Comfortaa', sans-serif;
}

.menu_active {
    background-color: rgba(255, 255, 255, 0.5);
}
