:root {
    --player-button-bg: #9497C6;
    --nav-bg: #192405
}

#nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--nav-bg);
    padding: 3em;
}

#nav ul {
    display: flex;
    word-break: keep-all;
    flex-wrap: wrap;
    flex-direction: row;
    list-style: none;
    gap: 2em;
}

#nav li a {
    font-size: 3em;
    color: var(--white);
    text-decoration: none;
}

#nav li a:hover,
#nav li a.active {
    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-decoration-color: #FFF;
}

#audio-player {
    width: 100%;
    align-self: flex-end;
    justify-content: flex-end;
    display: flex;
    gap: 1.5em;
    flex-wrap: wrap;
    padding-top: 1.5em;
}

#audio-player button {
    background-color: none;
    background-color: var(--player-button-bg);
    /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.5em;
}