body, html {
    height: 100%;
    overflow: hidden;
}

body {
    background-color: rgba(0,0,0,.92);
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #f0f0f0;
}

h1 {
    color: #7c7c7c;
    font-weight: lighter;
    margin: 0px;
}

em {
    font-style: normal;
    color: #006cff;
    font-weight: 900;
}

.container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    position: relative;
}

div.box-container {
    display: flex;
    flex-direction: row;
}

.box {
    font-weight: 200;
    font-size: 5vw;
    padding-right: 10px;
    padding-left: 10px;
}


/* If screen size is LESS THAN 514px then change the styling for the title and countdown items */
@media screen and (max-width: 514px) {
    h1 {
        font-size: 20px;
    }

    .box {
        font-size: 4.2vw;
    }
}