html {
    background-color: #000;
    color: #fff;
    box-sizing: border-box;
    font-family: sans-serif;
}
#timeview {
    position: absolute; top: 0; left: 0;
    line-height: 50px; font-size: 40px;
    padding-left: 10%;
    border-bottom: 5px solid #333;
    width: 50%;
    text-align: center;
    z-index: 50;
}
#delayview {
    position: absolute; top: 0; right: 0;
    line-height: 50px; font-size: 40px;
    padding-right: 10%;
    border-bottom: 5px solid #333;
    width: 50%;
    text-align: center;
    z-index: 50;
}
.page {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 50px;
}
#progress {
    position: absolute; top: 0; left: 0;
    width: 0; height: 50px;
    background-color: #040;
    transition: width 0.2s ease;
}
#clicktostart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 100vh;
    font-size: 50px;
    background-color: rgba(0,0,0,0.9);
    text-align: center;
    z-index: 100;
    animation: anim 1s ease infinite alternate;
}
@keyframes anim {
    10% { color: #fff; }
    100% { color: #444; }
}
#inputform {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: #000;
    z-index: 200;
}