body {
    background: black;
    max-width: 100vw;
    overflow-x: hidden;
}

.header {
    background: rgb(0,168,255);
    background: linear-gradient(90deg, rgba(0,168,255,1) 0%, rgba(92,33,113,1) 95%);
    height: 100vh;
    width: 100vw;
}

.header .darken {
    height: 100vh;
    width: 100vw;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    position: absolute;
}

.header .title {
    color: #dcdde1;
    text-align: center;
    padding: 16px;
    margin-top: 20px;
    /*padding: 25vh 30%;*/
}

.header .title .crest {
    height: 60px;
    position: relative;
    top: 14px;
}

.hidden {
    display: none;
}

.refreshButton {
    text-align: right;
    position: absolute;
    right: 0;
    z-index: 5;
}

.refreshButton a {
    margin: 1em;
}

.button {
    background-color: #44bd32;
    color: #fff;
    border: none;
}

.button:hover,
.button:active,
.button:focus {
    background-color: #4cd137;
    color: #fff;
}

.button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}



.times {
    text-align: center;
}

.times input {
    font-size: 20pt;
    text-align: center;
    padding: 10px 0;
    min-width: 75%;
}

.times label {
    color: #dcdde1;
    font-size: 12pt;
}

.warning {
    position: absolute;
    padding: 1em 2em;
    background-color: #f53302;
    border-radius: 4px;
    top: 4em;
    left: 1em;
    right: 1em;
    z-index: 1;
}

.warning a {
    text-decoration: none;
    color: #ddd;
}

.warning a:hover {
    color: #bbb;
}

.rounded-img {
    border-radius: 10%;
}

.footer {
    height: 20px;
    color: #aaa;
    position: fixed;
    right: 1em;
    bottom: 1em;
}

@media (max-width: 550px) {
    .header .title {
        padding-top: 70px;
    }
}