@charset "UTF-8";

:root {
    --white: rgb(255, 255, 255);
    --green-light: rgb(71, 157, 29);
    --green-dark: rgb(30, 87, 47);
    --answer-sz: 70vw;
    --letter-box-sz: 5vw;
}

html {
    box-sizing: border-box;
    width: 100%;
    background-color: #fff;
    font-family: 'markOT';
    overflow: hidden;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    outline: none;
}

h1 {
    font-size: 7vw;
}

h2 {
    font-size: 5.5vw;
    line-height: 1.2;
}

h3 {
    font-size: 4.5vw;
    text-transform: uppercase;
}

#header {
    height: 15vw;
    padding: 2vw;
    margin-bottom: 5vw;
    background-color: lightgray;
    background-size: contain;
    background-repeat: no-repeat;
    background-origin: content-box;
    background-position: center center;
    background-image: url('../images/logo.png');
}

#page-content {
    padding: 2vw;
    text-align: center;
    font-family: 'markOT';
}

.button {
    width: 75%;
    margin: 10px auto;
    display: block;
    font-size: 3.2vw;
    font-weight: normal;
    text-align: left;
    color: var(--white);
    background-color: var(--green-dark);

    -webkit-tap-highlight-color: transparent;
}



.button.active {
    background-color: var(--green-light);
}

.lrg.button {
    width: 75%;
    font-size: 4.5vw;
}