body {
    margin: 0;
    line-height: inherit;
    background: #222222;
}

.body-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 70px;
    padding: 0;

    position: sticky;
    top: 0;
    left: 0;

    background: #222222;

    color: #ccc;
    font-size: 16px;

    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);

    z-index: 50;
}

.nav-button-wrapper {
    display: flex;
    align-items: center;
    flex-grow: 1;

    height: 100%;
    width: 100%;
}

.nav-left {
    justify-content: right;
}

.nav-right {
    justify-content: left;
}

.nav-button-wrapper>* {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 100%;

    text-transform: uppercase;

    cursor: pointer;

    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.nav-button-wrapper>*:not(.logo) {
    transition-property: color;
    transition-property: background;
    transition-duration: 500ms;
}

.nav-button-wrapper>*:not(.logo) {
    display: none;
}

@media (min-width: 600px) {
    .nav-button-wrapper>*:not(.logo) {
        display: flex;
    }
}

.nav-button-wrapper>*:not(.logo):hover {
    color: rgb(255, 222, 92);
    background: #1e1e1e;
}

.nav-button-wrapper>.selected {
    color: rgb(219, 197, 107);
}

.nav-button-wrapper>*>a {
    all: unset;
    width: 100%;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav>.logo {
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    margin-left: 20px;
    margin-right: 20px;

    height: 100%;

    text-transform: uppercase;

    cursor: default;

    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

.content {
    flex: 1;
    background: #fff;
    padding: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.footer {
    background: #222222;
    width: 100%;
    padding: 35px 0;
    position: relative;
    z-index: 50;
}

.footer-inner {
    width: auto;
    margin-left: 30px;
    margin-right: 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #ccc;
}

.footer-inner>* {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

    margin: 12px;
    padding: 0;
}

.footer-header {
    font-size: 16px;
}

.footer-icons {
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer-icons>*{
    font-size: 24px;
    color: rgb(156 163 175);

    padding: 0 10px;
}

.footer-description {
    font-size: 12px;
    color: rgb(107 114 128);
}

.background-scroll {
    transition-property: background-position;
    transition-duration: 25ms;
}

button {
    touch-action: manipulation;
}

input {
    touch-action: manipulation;
}