html,
body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.nav {
    /*backdrop-filter: saturate(180%) blur(20px);*/
    background: transparent;
    /*background-color: rgba(255, 255, 255, 0.8);*/
    display: block;
    left: 0;
    max-height: 44px;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    justify-content: center;
    z-index: 9999;
}

.nav-content {
    display: flex;
    height: 100%;
    justify-content: center;
    margin: 0 auto;
    max-width: 980px;
    padding: 0 22px;
}

.nav-list {
    display: flex;
    height: 44px;
    margin: 0 -10px;
    padding: 0;
}

.nav ul {
    align-items: center;
    list-style: none;
}

.nav ul li {
    padding: 0 10px;
}

.nav ul li a {
    color: black;
    display: flex;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 500;
    padding: 0 10px;
    text-decoration: none;
}

.nav-item.nav-logo a {
    font-family: 'SF Mono', sans-serif;
    font-weight: bold;
}

.hero {
    align-items: center;
    background-image: url(/assets/images/gallery/IMG_1513.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    font-family: 'SF Mono', sans-serif;
    height: calc(100vh);
    justify-content: center;
    position: relative;
}