#nav-links > a {
    margin: 8px 16px;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
}

#nav-links > a:hover {
    background-color: #81c784;
}

nav a.active {
    background-color: #2e7d32;
    color: white;
}

nav {
    padding: 40px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav img {
    margin-left: 16px;
}

#menu {
    display: none;
    margin-right: 8px;
    font-size: 1.5rem;
}

#nav-links {
    display: block;
}

/* 768px and less */
@media only screen and (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .nav-images {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #menu {
        display: block;
    }

    #nav-links {
        display: none;
        height: 0;
    }

    #nav-links.open {
        display: block;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    #nav-links.open a {
        margin: 0;
    }

    nav img {
        margin-left: 8px;
    }
}
