/* Themes for day and night depending on the clock. Default background, text color, and font. */
html.day {
    color: #000;
    background-color: #84E884;
    font-family: 'Raleway', sans-serif;
}
html.night {
    color: #fff;
    background-color: #101C10;
    font-family: 'Raleway', sans-serif;
}

h1 {
    font-family: 'Pacifico', cursive;
}
h2 {
    font-family: 'Righteous', cursive;
}

article.textBox {
    max-width: 600px;
    border: 5px solid #101C10;
    padding: 5px;
}

h1.success {
    font-size: 100px;
    font-style: bold;
}