body {
    font-family: 'Exo 2', sans-serif;
    background-color: #213039;
    color: rgba(255, 255, 255, .9);
    margin: 0;
}

a {
    color: rgba(132, 250, 234, 0.60);
    text-decoration: none;
}

a:hover {
    color: rgba(132, 250, 234, .9);
}

header {
    background-color: rgb(19, 31, 38);
    width: 100%;
    height: auto;
    display: flex;
    position: fixed;
    top: 0;
    padding-top: 5px;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
}

#panelContainer {
    display: flex;
    justify-content: space-evenly;
}

.panel {
    margin-left: 30px;
    margin-right: 30px;
}

#displayContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#timeDisplay {
    font-family: 'Share Tech Mono', monospace;
    font-size: 5vw;
}

#attribution {
    position: fixed;
    bottom: 2%;
    right: 2%;
    font-size: 2vh;
}

input {
    float: right;
    margin-left: 5px;
    background-color: #213039;
    color: rgba(255, 255, 255, .7);
    border: none;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.30);
    font-family: 'Exo 2', sans-serif;
}

input[type="button"] {
    margin-top: 3px;
    padding: 3px;
    border-radius: 3px;
}

input[type="button"]:hover {
    box-shadow: 0px 2px 4px rgba(0,0,0,0.60);
    position: relative;
    top: -1;
}

.option {
    margin-bottom: 5px;
}