nav {
    display: flex;
    height: fit-content;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--wheat-2);
}
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-left: 20px;
    padding-right: 20px;
}
nav a {
    text-decoration: none;
    color: inherit;
}