::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.hidden,
[hidden] {
    display: none !important;
}

.visually-hidden {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    /* 1 */
}

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}

.invisible {
    visibility: hidden;
}

.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}

:root {
    --color-primary: #fdaa3e;
    --color-primary-hover: #ffb85c;
    --color-background: #070707;
    --color-foreground: #edede9;
}

html {
    background-color: var(--color-background);
    color: var(--color-foreground);
    font-size: 1em;
    line-height: 1.4;
}

html,
body {
    margin: 0;
    padding: 0;
}

header {
    height: 65px;
    width: 100vw;
    background-color: var(--color-background);
    position: fixed;
    z-index: 100;
}

main {
    padding-top: 65px; /* header height */
}

header .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    padding: 0;
    font-family: "Lexend", sans-serif;
    font-size: 1.4em;
    font-weight: 600;
    text-transform: none;
}

header #header-brand {
    color: var(--color-foreground);
    text-decoration: none;
}

h1 {
    font-family: "Press Start 2P", system-ui;
    width: 70%;
    text-transform: uppercase;
    font-size: 2.2em;
    line-height: 1.8em;
    margin: 0;
    padding: 0;
}

h2 {
    font-family: "Press Start 2P", system-ui;
    width: 70%;
    text-transform: uppercase;
    font-size: 1.8em;
    line-height: 1.6em;
    margin: 0;
    padding: 0;
    opacity: .9;
}

h6 {
    font-family: "Lexend", sans-serif;
    font-weight: 500;
    font-size: 1em;
    width: 50%;
    color: var(--color-primary);
    margin: 0 0 calc(20px + 1vh) 0;
    text-transform: uppercase;
}

section {
    padding: 15vh 0;
}

.content-wrapper {
    margin: auto;
    display: block;
    width: 80vw;
    max-width: 1000px;
}

a.btn-filled {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: var(--color-primary);
    color: var(--color-foreground);
    height: 55px;
    padding: 0 40px;
    font-family: "Press Start 2P", system-ui;
    font-size: 1em;
    text-transform: uppercase;
    text-decoration: none;
    transition-timing-function: ease-in;
    transition-duration: 150ms;
    border-bottom: 10px solid rgba(0, 0, 0, .3);
}

a.btn-filled:hover {
    background-color: var(--color-primary-hover);
    box-shadow: var(--color-primary) 0 0 400px;
    border-bottom: 10px solid rgba(0, 0, 0, .3);
    transition-timing-function: ease-in;
    transition-duration: 150ms;
    margin-top: -2px;
    margin-bottom: 2px;
    cursor: pointer;
}

a.btn-filled:active {
    box-shadow: var(--color-primary) 0 0 400px;
    border-bottom: 7px solid rgba(0, 0, 0, .3);
    transition-timing-function: ease-in;
    transition-duration: 30ms;
    margin-top: 2px;
    margin-bottom: -2px;
    cursor: pointer;
}

a.btn-text {
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    font-size: 1em;
    margin: calc(20px + 1vh) 0 calc(30px + 1vh) 0;
    color: var(--color-primary);
    transition-timing-function: ease-in;
    transition-duration: 100ms;
}

a.btn-text:hover {
    color: var(--color-primary-hover);
    transition-timing-function: ease-in;
    transition-duration: 100ms;
}

p {
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    font-size: 1.1em;
    width: 50%;
    opacity: .7;
    margin: calc(20px + 1vh) 0 calc(30px + 1vh) 0;
}

footer {
    padding: 15vh 0 0 0;
}

footer .footer-play {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .footer-play a.btn-text {
    text-transform: uppercase;
    font-size: 1.4em;
}

footer nav {
}

footer nav a.btn-text {
    display: inline-block;
    margin: 10px calc(20px + 1vh) 10px 0;
}

footer .footer-copyright {
    margin: calc(20px + 1vh) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .footer-copyright p {
    margin: 5px 0;
    text-align: center;
    font-size: .8em;
    text-transform: uppercase;
    opacity: .3;
    width: 70%;
}