/* ------------- NAV SECTION ------------- */
.nav__wrapper {
    container-type: inline-size;
    container-name: nav;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0px 0px 18px #000;
}

.nav {
    display: flex;
    background-color: #d1122e;
    max-width: 100%;
    font-size: 0.8rem;
    font-weight: bold;
}

.nav-list {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: auto;
    align-items: center;
    justify-items: center;
    gap: 5px;
}

.nav__logo {
    max-width: 100vw;
    width: 24px;
    margin: 10px 10px;
}

.nav-item {
    list-style: none;
    outline: none;
}

.nav-item a {
    color: #fff;
    text-decoration: none;
    outline: none;
}

.nav-item a:hover {
    text-decoration: underline;
}
/* ------------- NAV QUERIES ------------- */
@container nav (min-width: 600px) {
    .nav {
        font-size: 1.3rem;
        text-wrap: balance;
    }
    .nav__logo {
        width: 30px;
    }
}
/* ------------- NAV ENDS ------------- */