html, body {
    height: 100%;
    margin: 0px;
    padding: 0px;
    border: 1px solid #000;
}
body {
    background-color: #000;
    background-size: cover;
}
button {
    background-color: #CCC;
    background: linear-gradient(0, rgba(154,154,154,1) 0, rgba(255,255,255,1) 92.5%);
    border: 2px outset #CCC;
    border-radius: 6px;
    box-shadow: -0.05em 0.1em 0.1em rgba(0, 0, 0, 0.5);
    position: relative;
    top: 0.25em;
}
button:focus, button:active {
    border-style: inset;
    box-shadow: 0.05em -0.1em 0.1em rgba(0, 0, 0, 0.5);
}
button i {
    font-style: normal;
}
#settings {
    background-color: transparent;
    color: #FFF;
    border-radius: 0.5em;
    padding: 1em;
    position: absolute;
    top: 1em;
    left: 1em;
}
#settings.opened {
    background-color: #FFF;
    color: #000;
}
#settings p {
    display: none;
}
#settings.opened p, #settings p#settingstoggle {
    display: block;
}
.toggle {
     cursor: pointer;
}
#fontexamples {
    background-color: #FFF;
    border-radius: 0.5em;
    display: none;
    left: 105%;
    margin: 0;
    padding: 1em;
    position: absolute;
    top: 0;
    width: 20em;
}
#fontexamples.opened {
    display: block;
}
#fontexamples .fontSample {
   display: block;
}
label {
    display: inline-block;
    margin: 0 0.5em 0 0;
    text-align: right;
    width: 5em;
}
input[type=number] {
    text-align: right;
    width: 3.5em;
}
#start {
    border: 2px outset #CCC;
    display: block;
    font-size: 30px;
    position: absolute;
    top: 1em;
    right: 1em;
}
#start:focus, #start:active {
    border-style: inset;
}
#timer {
    color: #090;
    height: 100%;
    font-size: 256px;
    font-family: sans-serif;
    text-align: center;
    line-height: 1;
    margin: 1px;
    padding: 1px;
    position: relative;
    top: 0;
}
#timer p {
    text-shadow: -8px 16px 32px #000;
}
#milliseconds, #millisecondseparator {
    display: none;
}
video {
    background-color: #FFF;
    border: 2px solid red;
    bottom: 1em;
    display: none;
    height: 180px;
    margin: 1em;
    position: fixed;
    right: 1em;
    width: 320px;
}
#task {
    background-color: #FFF;
    border: 2px solid blue;
}
#hint {
    background-color: #FFF;
    border: 2px solid green;
}

