/********************************************************
 *  File name   : nav.css                               *
 *  Author      : Yohanes Benny Bennedictus             *
 *  Date        : June, 23 2025                         *
 *  description : CSS rules to manage the layout of     *
 *              : the main menu.                        *
*********************************************************/

nav > ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

nav li {
    list-style: none;
}

nav a {
    text-decoration: none;
    font-family: Roboto, sans-serif;
    font-size: 0.9em;
    color: var(--red);
}
