@import "constants.css";

nav {
    width: 100%;
    height: var(--nav-height);
    line-height: var(--nav-height);
    margin-bottom: 50px;
}

nav ul {
    list-style: none;
    padding: 0;
    width: fit-content;
    margin: 0 8px;
    float: left;
}

nav ul li {
    float: left;
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    cursor: pointer;
    color: var(--text-color);
}

nav ul li a:hover {
    color: #000;
}
