* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 0.48px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Juneau', sans-serif;
    line-height: 24px;
    background: #f2f0e8;
    color: #111;
}

a {
    text-decoration: none;
    color: #111;
}

:root {
    --page-side-padding: clamp(40px, 6vw, 110px);
    --page-content-width: min(1415px, calc(100vw - (var(--page-side-padding) * 2)));
}

.page-container {
    width: var(--page-content-width) !important;
    max-width: 100%;
    margin: 0 auto;
}

.linear-background {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.4) 100%);
}

.link {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
}

.link:hover {
    text-decoration: underline;
}

.invisible {
    visibility: hidden;
}

@media (max-width: 1100px) {
    :root {
        --page-content-width: calc(100vw - 40px);
    }
}

