nav {
    background-color: var(--bgtransparent);
    position: sticky;
    top: 0;
}

nav ul {
    display: flex;
    margin: 0;
}

nav li {
    list-style-type: none;
    padding: 5px;
}

nav a {
    text-decoration: none;
}

nav a:hover, .active {
    background-color: rgba(255, 255, 255, 0.603);
}