body {
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


div { font-size:6rem;}


#timeContainer {
    display:flex;
    justify-content: center;
}

#alertTxt {
    color:#ff0033;
}
p {
    margin:0;
    font-size:1rem;
}

.hide {
    display:none;
}
.delay {
    color: #ff0033;
    font-size:2rem;
}
#canceled .numbers {
    text-decoration: line-through;
    color: #ff0033;
}

#canceled div{
    color:black;
}
h1 {
    font-size:2rem;
    margin-bottom:10px;
}

.loading {
    margin-top:30px;
    width: 120px;
    height: 120px;
    -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }