@font-face {
    font-family: 'SairaCondensed';
    src:  url('fonts/SairaCondensed-Thin.woff2') format('woff2');
    font-weight: 100;
}

@font-face {
    font-family: 'SairaCondensed';
    src:  url('fonts/SairaCondensed-ExtraLight.woff2') format('woff2');
    font-weight: 200;
}

@font-face {
    font-family: 'SairaCondensed';
    src:  url('fonts/SairaCondensed-Light.woff2') format('woff2');
    font-weight: 300;
}

@font-face {
    font-family: 'SairaCondensed';
    src:  url('fonts/SairaCondensed-Regular.woff2') format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: 'SairaCondensed';
    src:  url('fonts/SairaCondensed-Medium.woff2') format('woff2');
    font-weight: 500;
}

@font-face {
    font-family: 'SairaCondensed';
    src:  url('fonts/SairaCondensed-SemiBold.woff2') format('woff2');
    font-weight: 600;
}

@font-face {
    font-family: 'SairaCondensed';
    src:  url('fonts/SairaCondensed-Bold.woff2') format('woff2');
    font-weight: 700;
}

@font-face {
    font-family: 'SairaCondensed';
    src:  url('fonts/SairaCondensed-ExtraBold.woff2') format('woff2');
    font-weight: 800;
}

@font-face {
    font-family: 'SairaCondensed';
    src:  url('fonts/SairaCondensed-Black.woff2') format('woff2');
    font-weight: 900;
}

@font-face {
    font-family: 'DuneRise';
    src:  url('fonts/Dune_Rise.woff') format('woff');
}

* {
    box-sizing: border-box;
}

html {
    height: 100%;
    background: black;

    color: white;
    font-size: 20px;
    font-family: SairaCondensed, sans-serif;
}

body {
    height: 100%;
    margin: 0;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

h1 {
    margin: 0;
}

h2 {
    margin: 2em 0 1em;
    text-transform: uppercase;
    font-size: 64px;
    font-weight: 600;
    line-height: 1;
}

@media (max-width: 800px) {
    h2 {
        font-size: 8vw;
    }
}

strong {
    color: #fca40f;
}

a {
    color: #fca40f;
    text-decoration: underline;
}

.o-container {
    position: relative;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
}
.o-container--large {
    max-width: 1024px;
}

.c-header {
    padding: 20px 0;
}

.c-header__grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.c-header__logo {
    height: 25px;
}

.c-header__baseline {
    font-size: 20px;
}