/* --- FONTS --- */

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

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Sofia Sans';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/sofia-sans-v16-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* sofia-sans-italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Sofia Sans';
    font-style: italic;
    font-weight: 400;
    src: url('fonts/sofia-sans-v16-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* sofia-sans-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Sofia Sans';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/sofia-sans-v16-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* sofia-sans-700italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Sofia Sans';
    font-style: italic;
    font-weight: 700;
    src: url('fonts/sofia-sans-v16-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* --- COLORS --- */
:root {
    --primary-color: #efb865;
    --primary-color-dark: #a17937;

    --secondary-color: #3170B4;
    --tertiary-color: #5A9390;
}

/* --- WHITE ON TRANSPARENT CANVAS ON BLACK BACKGROUND --- */

* {
    box-sizing: border-box;
    color: white;
    font-family: sofia-sans, sans-serif;
}

body {
    margin: 0;
    background-color: black;
}

canvas {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

/* --- UTILITIES --- */
.hidden {
    display: none !important;
}