html, body {
    height: 100%;
    margin: 0;
}
/* Set's background image fullscreen */
body {
    background-image: url(content/const_fullscreen.png);
    background-size: contain;
    background-position: center; 
    background-repeat: no-repeat; 
    background-attachment: fixed;
    background-color: #4566a3;
}

/* Sets countdown timer below background text */
.timer-container {
    position: fixed;
    top: 73vh;
    left: 52%;
    transform: translateX(-50%) scale(2.5);
    z-index: 1000;
}

/* Formats text to sit below countdown timer among other settings */
.text {
    position: fixed;
    top: 90vh;
    margin-top: 60px;
    left: 52%;
    transform: translateX(-50%) scale(1.0);
    z-index: 1000;
    font-family: Silkscreen, sans-serif;
    font-size: 60px;
}
