/************************************************
 *  File name   : nav.css                       *
 *  Author      : Yohanes Benny Bennedictus     *
 *  Date        : April, 24 2025                *
 *  Description : CSS rules which define the    *
 *                <nav> element                 *
 ************************************************/

nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

nav li {
    list-style: none;
    font-size: 1.25em;
    font-family: Roboto, sans-serif;
}

nav a {
    text-decoration: none;
}