@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Rubik&display=swap');
@supports (display: grid) {
    :root {
        /* Full grid area variable */
        --fullGrid: 1 / 1 / -1 / -1;
    }
    header {
        /* Create grid spanning viewport width & height */
        display: grid;
        grid-template-rows: 100vh;
        overflow: hidden;
    }
    .video-bg {
        /* Span the full grid */
        grid-area: var(--fullGrid);
        min-width: 100%;
        min-height: 100%;
        /* Display video below overlay */
        z-index: -1;
    }
    .video-bg video, .video-bg img {
        /* Re-size video to cover full screen while maintaining aspect ratio */
        -o-object-fit: cover;
        object-fit: cover;
        min-width: 100%;
        min-height: 100%;
    }
    .video-bg::-webkit-media-controls {
        display: none;
    }
    .video-overlay {
        /* Cover background video */
        z-index: 0;
        /* Span the full grid */
        grid-area: var(--fullGrid);
        /* Center Content */
        display: grid;
        /* Semi-transparent background */
        background-color: rgba(0, 0, 0, 0.55);
    }
    .video-scroll__overlay {
        /* Cover background video */
        z-index: 1;
        /* Span the full grid */
        grid-area: var(--fullGrid);
        /* Center Content */
        display: grid;
        /* Semi-transparent background */
        background-color: transparent;
    }
}

@supports (display: grid) {
    .video-overlay {
        justify-content: center;
        align-content: center;
        text-align: center;
        color: #fff;
    }
    .video-overlay > h1 {
        font-size: calc(1em + 2vw);
        font-weight: 700;
        line-height: 1.5;
        letter-spacing: 0.02em;
        color: #fff;
    }
}
:root {
    /* Base font size */
    font-size: 10px;
}

body {
    font-family: 'Rubik', sans-serif;
    background-color: #fcfcfc;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-weight: 300;
  letter-spacing: -.1rem;
  margin-bottom: 2.0rem;
  margin-top: 0;
}

h1 {
  font-size: 4.6rem;
  line-height: 1.2;
}

h2 {
  font-size: 3.6rem;
  line-height: 1.25;
}

h3 {
  font-size: 2.8rem;
  line-height: 1.3;
}

h4 {
  font-size: 2.2rem;
  letter-spacing: -.08rem;
  line-height: 1.35;
}

h5 {
  font-size: 1.8rem;
  letter-spacing: -.05rem;
  line-height: 1.5;
}

h6 {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.4;
}
p {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.4;
}

main {
    padding: 5em 2em;
    max-width: 94em;
    margin: 0 auto;
}

main > h1 {
  color: #800080;
  font-style: oblique;
}

img {
  width: 100%;
}
.multi_col {
margin: 3rem 0;
column-gap: 3.5rem;
column-width: 55ch;
column-rule-style: solid;
column-rule-color: #800080;
}

.multi_col > p:first-child {
  margin-top: 0;
}



.masthead-arrow {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
    width: 30px;
    height: 30px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.masthead-video-credit {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #fff;
    opacity: 0.6;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.02em;
    padding-right: 10px;
    bottom: 10px;
    text-decoration: none;
    text-align: right;
    line-height: 1.5;
    transition: 0.2s ease all;
}
.masthead-video-credit span {
    display: block;
}
.masthead-video-credit:hover {
    opacity: 1;
}