@font-face {
    font-family: "AtlasGrotesk";
    src: url("/lassen/font/AtlasGrotesk-Bold-Web.woff2") format("woff2"), url("/lassen/font/AtlasGrotesk-Bold-Web.woff") format("woff");
    font-weight: bold;
}

@font-face {
    font-family: "AtlasMono";
    src: url("/lassen/font/AtlasTypewriterBlack.woff") format("woff");
    font-weight: bold;
}

@font-face {
    font-family: "Unica77";
    src: url("/lassen/font/Unica77LLWeb-Regular.woff2") format("woff2");
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: "Unica77";
    src: url("/lassen/font/Unica77LLWeb-Regular.woff") format("woff");
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: "Unica77";
    src: url("/lassen/font/Unica77LLWeb-Italic.woff2") format("woff2");
    font-style: italic;
}

@font-face {
    font-family: "Unica77";
    src: url("/lassen/font/Unica77LLWeb-Italic.woff") format("woff");
    font-style: italic;
    font-display: fallback;
}

@font-face {
    font-family: "Unica77Mono";
    src: url("/lassen/font/Unica77MonoLLWeb-Regular.woff2") format("woff2");
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: "Unica77Mono";
    src: url("/lassen/font/Unica77MonoLLWeb-Regular.woff") format("woff");
    font-style: normal;
    font-display: fallback;
}

:root {
    --base: 15px;
    --fg: #dddddd;
    --bg: #000000;
}

@media screen and (min-height:667px) and (min-width:320px) and (orientation: portrait) {
     :root {
        --base: 16px;
    }
}

@media screen and (min-height:736px) and (min-width:414px) and (orientation: portrait) {
     :root {
        --base: 17px;
    }
}

@media screen and (min-height:812px) and (min-width:375px) and (orientation: portrait) {
     :root {
        --base: 18px;
    }
}

@media screen and (min-device-width: 768px) and (orientation: portrait) {
     :root {
        --base: 22px;
    }
}

@media screen and (min-device-width: 1024px) and (orientation: landscape) {
     :root {
        --base: 22px;
    }
}

html,
body {
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    height: -webkit-fill-available;
}

body {
    color: var(--fg);
    background-color: #000;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "AtlasGrotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: var(--base);
    font-weight: bold;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 0;
    transition: color 50ms linear;
    min-height: 100vh;
    min-height: var(--h) -webkit-overflow-scrolling: touch;
}

section {
    height: 100vh;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

a {
    color: currentColor;
    text-decoration: none;
}

a:hover {
    /* text-decoration: underline; */
}

a:visited {
    color: currentColor;
}

label {
    display: block;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    -webkit-padding: 0.4em 0;
    padding: 0.4em;
    margin: 0 0 0.5em 0;
    box-sizing: border-box;
    border: none;
    border-radius: 2px;
}

input:disabled {
    color: #ccc;
}

button {
    outline: none;
    cursor: pointer;
    background-color: transparent;
    color: inherit;
}

button:disabled {}

button:not(:disabled):active {}

button:focus {}

ul {
    /* list-style: none; */
    /* padding: 0; */
    margin: 0;
    font-weight: 400;
}

p {
    font-weight: 400;
}