/* ============================================================
   FONTS
   ============================================================ */

@font-face {
    font-family: "DOORS Remake";
    src: url("../fonts/DOORSRemake-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Signika";
    src: url("../fonts/Signika-VariableFont_GRAD,wght.ttf")
        format("truetype-variations");
    font-weight: 300 700;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */

:root {
    --color-brand-dark: hsl(19.2, 45.5%, 10.8%);
    --color-brand-light: hsl(30, 100%, 87.1%);
    --color-bg-base: hsl(19.2, 45.5%, 5%);

    --font-display: "DOORS Remake", sans-serif;
    --font-body: "Signika", sans-serif;
}

body {
    background: var(--color-bg-base) !important;
    opacity: 1 !important;
    margin: 0;
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-light);
}

h1 {
    font-family: var(--font-display);
    font-size: 8rem;
}

p {
    font-family: var(--font-body);
    font-size: 2rem;
}
