@charset "UTF-8";
:root {
    --dark: #171616;
    --light: #ffffff;
    --accent: rgb(27, 117, 188);
    --green: #96e646;
    --turquoise: #01ffea;
    --orange: #fec959;
    --mauve: #dec8ea;
    --yellow: #e8f96b;
    --cream: #f7f9b2;
}
@font-face {
    font-display:swap;
    font-family:Aeonik;
    font-style:normal;
    font-weight:700;
    src:url(../fonts/Aeonik-Regular.woff2) format("woff2");
    src:url(../fonts/Aeonik-Regular.woff) format("woff");
}
@font-face {
    font-display:swap;
    font-family:SpaceGrotesk;
    font-style:normal;
    font-weight:500;
    src:url(../fonts/SpaceGrotesk-Medium.woff2) format("woff2");
    src:url(../fonts/SpaceGrotesk-Medium.woff) format("woff");
}
@font-face {
    font-display:swap;
    font-family:GeistRegular;
    font-style:normal;
    font-weight:400;
    src:url(../fonts/Geist-Regular.woff2) format("woff2")
}
@font-face {
    font-display:swap;
    font-family:GeistBold;
    font-style:normal;
    font-weight:700;
    src:url(../fonts/Geist-Bold.woff2) format("woff2")
}
*, *::after, *::before {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    height: 100%;
}
body {
    overflow-x: hidden;
    background-color: var(--dark);
    color: var(--light);
    font-family: 'GeistRegular', sans-serif;
    font-weight: 400;
    font-size: 18px;
    min-height: 100vh;
    min-height: 100dvh;
}
img, video, svg {
    max-width: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary, div {
    display: block;
}
.accent {
    font-family: SpaceGrotesk, sans-serif;
    font-weight: 500;
    color: var(--accent);
}
.cream {
    font-family: SpaceGrotesk, sans-serif;
    font-weight: 500;
    color: var(--cream);
}
.green {
    font-family: SpaceGrotesk, sans-serif;
    font-weight: 500;
    color: var(--green);
}
.turquoise {
    font-family: SpaceGrotesk, sans-serif;
    font-weight: 500;
    color: var(--turquoise);
}
.orange {
    font-family: SpaceGrotesk, sans-serif;
    font-weight: 500;
    color: var(--orange);
}
.mauve {
    font-family: SpaceGrotesk, sans-serif;
    font-weight: 500;
    color: var(--mauve);
}
.yellow {
    font-family: SpaceGrotesk, sans-serif;
    font-weight: 500;
    color: var(--yellow);
}
.sserif {
    font-family: SpaceGrotesk, sans-serif;
    font-weight: 500;
}
h1, h2, h3, h4, h5, h6 {
    margin: 1rem 0 1.38rem;
    font-weight: 700;
    line-height: 1.5;
}
h1.logo {
    margin-top: 0;
    font-family: Aeonik, sans-serif;
    font-size: clamp(3rem, 1rem + 7vw, 5rem);
}
h2 {
    font-size: clamp(2.5rem, 1rem + 4.5vw, 4rem);
    font-family: SpaceGrotesk, sans-serif;
    font-weight: 400;
    margin: 1rem 0;
    line-break: loose;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
h3 {
    font-family: GeistRegular, sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 1rem + 4vw, 3rem);
}
p {
    font-size: 1.5rem;
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 1.2rem;
    line-break: loose;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: wrap;
    text-align: left;
}

@media (min-width: 48rem) {
    p {
        font-size: clamp(1.5rem, 1rem + 4vw, 3rem);
        font-weight: normal;
        margin-top: 0;
        margin-bottom: 1.2rem;
        line-break: loose;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: wrap;
        text-align: left;
    }
}
a {
    color: var(--accent);
    text-decoration: none;
    background-color: transparent;
}
a:hover, a:focus {
    color: white;
    text-decoration: var(--accent);
}
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}
@media (min-width: 48rem) {
    .container {
        padding: 0 40px;
    }
}
#intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #171616;
    color: #ffffff;
}

#masthead {
    display: none;
}
@media (min-width: 48rem) {
    #masthead {
        margin-top: 2rem;
        position: fixed;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        z-index: 9999;
    }

    #masthead a {
        width: auto;
        height: 100%;
        display: inline-flex;
        row-gap: 1.5rem;
        z-index: 1;
        padding: .3em 2rem;
        margin: -.3em;
        font-size: 14px;
    }
}
.content {
    padding: 9vh 4vw 4vw;
}
.content .accent, .content strong {
    color: var(--accent);
    font-weight: 700;
}