/* Theming and resets */

:root {
    --light-shade: white;
    --light-accent: #bbe1fa;
    --main: #3282b8;
    /* --main-analogous: #32b867; */
    --main-analogous: #2EAA60;
    /* --accent: #b86832; */
    --accent: #C85F03;
    --dark-accent: #0f4c75;
    --dark-shade: #1b262c;
    --button-color: var(--main);
    --primary-text-color: var(--light-shade);
    --accent-text-color: var(--light-accent);
    --muted-text-color: #89A4B5;
    --error-color: #b83f32;
    --status-color-error: #E50027;
    --status-color-warning: #FEDB41;
    --status-color-ok: #10c803;
}

* {
    font-family: 'Roboto', sans-serif;
    color: var(--primary-text-color);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 6px;
}

div {
    border-radius: unset;
}

body {
    background-color: var(--dark-shade);
}

h1,
h2,
h3 {
    font-family: 'Roboto Slab', serif;
    color: var(--primary-text-color);
    font-weight: normal;
}

a {
    color: var(--light-accent);
}

input {
    background-color: inherit;
    border: 1px solid var(--light-accent);
    padding-left: 1em;
}

button {
    background-color: var(--button-color);
    color: var(--primary-text-color);
    padding: 1em 2em;
    border: none;
    cursor: pointer;
    border: 1px solid var(--light-accent);
    touch-action: manipulation;
}

button:disabled {
    opacity: 0.5;
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type=time] {
    -webkit-appearance: none;
    -moz-appearance: none;
}

::-webkit-datetime-edit,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-year-field,
::-webkit-inner-spin-button,
::-webkit-outer-spin-button,
::-webkit-calendar-picker-indicator,
::-webkit-clear-button {
    -webkit-appearance: none;
    -moz-appearance: none;
}


/* roboto-regular - latin-ext_latin */

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local(''), url('/static/roboto-v20-latin-ext_latin-regular.woff2') format('woff2');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}


/* roboto-slab-regular - latin-ext_latin */

@font-face {
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local(''), url('/static/roboto-slab-v12-latin-ext_latin-regular.woff2') format('woff2');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}


/* Global classes */

.cf-header img {
    height: 10vw;
    width: 10vw;
    font-size: 0;
}

@media screen and (min-width: 600px) {
    .cf-header img {
        height: 60px;
        width: 60px;
    }
}

@media screen and (max-width: 250px) {
    .cf-header img {
        height: 25px;
        width: 25px;
    }
}

.cf-header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vw;
    margin-top: 5px;
    width: 100%;
}

@media screen and (min-width: 600px) {
    .cf-header {
        height: 60px;
    }
}

@media screen and (max-width: 250px) {
    .cf-header {
        height: 25px;
    }
}

.cf-header h1 {
    text-align: center;
    font-size: 8vw;
    margin: 0 2vw;
}

@media screen and (min-width: 600px) {
    .cf-header h1 {
        font-size: 48px;
    }
}

@media screen and (max-width: 250px) {
    .cf-header h1 {
        font-size: 20px;
    }
}