
:root {
    --clr-white: #ffffff;
    --clr-dark-blue: #213B92;
    --clr-darkest-blue: #142D7F;
    --clr-black: #000000;
    --clr-green: #83D900;
    --clr-yellow: #FFC400;
    --clr-red: #E95D4F;
}

html {
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100%;
    text-align: center;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    display: flex;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 750px;
    height: 100%;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    overflow-x: hidden;
    scroll-behavior: smooth;
    z-index: 10;
}

* {
    position: relative;
    box-sizing: border-box;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: inherit;
}

.noselect,
.noselect * {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;

    -webkit-tap-highlight-color: transparent;
}

input:focus {
    outline: none;
}

a {
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.hidden {
    display: none !important;
}

.middle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.animated {
    transition: color 0.5s, font-size 0.5s, background-image 0.5s, background-color 0.5s;
}


/* ----------------- Media -----------------

/* Base width: 390px */
:root {
    font-size: 2.56vw;
}

@media only screen and (min-width: 750px) {
    :root {
        font-size: 19.2px;
    }
}