html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
    display: block;
}

*[hidden] {
    display: none;
}

body {
    line-height: 1;
}

menu, ol, ul {
    list-style: none;
}

@font-face {
    font-family: Wayfinder;
    font-weight: 600;
    src: url("assets/Wayfinder.woff2") format("woff2");
}

html,
body {
    height: 100%;
    min-height: 100%;
    background: url("assets/bg.jpg") repeat-y top center / cover;
    font-family: Arial, Helvetica, sans-serif;
}

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.container {
    margin: 30px;
    width: 100%;
}

.logo-wrapper {
    text-align: center;
    width: 100%;
}

.logo {
    max-width: 150px;
    width: 100%;
}

.button-wrapper {
    margin-top: 10vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.button-wrapper a {
    background: white;
    border: 0;
    font-family: "Wayfinder";
    text-transform: uppercase;
    font-size: 3rem;
    margin: 10px 0px;
    padding: 10px;
    border-radius: 7px;
    color: #0f9739;
    display: inline-block;
    width: 100%;
    max-width: 375px;
    text-decoration: none;
    text-align: center;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.button-wrapper a:hover {
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

.notification  {
    position: absolute;
    bottom: 3vh;
    width: 100%;
    background: #b00202;
    color: white;
    text-align: center;
}

.notification span {
    margin: 10px;
    display: inline-block;
}