body {
    font-family: Futura,Helvetica,Arial,sans-serif;
    background-color: #202838;
}

h1 {
    font-size: 4em;
    margin-top: 20vh;
    margin-bottom: 20vh;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.buttons a {
    display:inline-block;
    padding:0.35em 1.2em;
    border:0.1em solid #3d8fb8;
    margin:0 0 1.5em 0;
    border-radius:0.12em;
    box-sizing: border-box;
    text-decoration:none;
    font-family:'Roboto',sans-serif;
    font-weight:300;
    color:#FFFFFF;
    text-align:center;
    transition: all 0.2s;
    font-size: 2.5em;
}

a:hover {
    color:#000000;
    background-color:#3d8fb8;
}

.buttons {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Used when the fetch response is bad */
#resNotOK {
    font-size: 2.5em;
    color: #FFFFFF;
    border: solid red;
    background-color: red;
}

/* Used when no JavaScript is present */
.noscriptmsg {
    border: solid red;
    background-color: red;
    max-width: fit-content;
    font-size: 3.5em;
    text-align: center;
    color: #fff;
    margin: auto;
}