body {
    font-weight: 200;
}

section {
    padding: var(--gutter-h) var(--gutter);
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
}

h1 {
    width: 100%;
    margin-bottom: var(--size-xs);
    color: var(--neutral-0);
    font-size: xx-large;
    font-weight: 800;
    letter-spacing: 0.05em;
}

h1.special {
    text-transform: uppercase;
    background: linear-gradient(170deg, var(--neutral-950), var(--primary-950));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

h2 {
    font-size: 1.4rem;
    width: 100%;
    margin-bottom: var(--size-xs);
    font-weight: 300;
    line-height: 1.2em;
    color: var(--neutral-0);
}

h3 {
    width: 100%;
    margin-bottom: var(--size-m);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--primary-500);
}

h4 {
    font-weight: 500;
}

@media screen and (max-width: 600px) {
    .note {
        left: calc(-1 * var(--gutter));
        width: 100vw;
    }

    h3 {
        font-size: 0.75rem;
        color: var(--primary-500);
        margin-bottom: 0.5rem;
    }

    h4 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
}

@media screen and (min-width: 600px) {
    h3 {
        font-size: 1.5rem;
        color: var(--primary-500);
        margin-bottom: 0.5rem;
    }

    h4 {
        font-size: 4rem;
        margin-bottom: 0.5rem;
    }
}