nav {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    z-index: 1001;
    padding: 7px 0;
    background: #BA5C31ee;
    height: 50px;
}

nav.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 0px 24px 0 rgb(0 0 0 / 50%);
}

nav a {
    text-decoration: none;
    color: #CDBEAC;
    color: ghostwhite;
    font-family: Soviet2ee;
    font-family: Oswald-Light;
    font-size: 26px;
    margin: 0 20px;
    display: flex;
    align-items: center;
}

nav a:hover {
    color: ghostwhite;
}

nav img.home {
    height: 24px;
}

@media only screen and (max-width: 1200px) {
    nav a {
        font-size: 24px;
        margin: 0 16px;
    }
}

@media only screen and (max-width: 992px) {
    nav a {
        margin: 0 12px;
    }
}

@media only screen and (max-width: 768px) {
    nav a {
        font-size: 22px;
        margin: 0 10px;
    }
}

@media only screen and (max-width: 576px) {
    nav a {
        font-size: 18px;
        margin: 0 10px;
    }

    nav img.home {
        height: 20px;
    }
}