body {
    margin:0;
    overflow:hidden;
}

.timer {
    width: 86px;
    left: 50px;
    position: absolute;
    box-sizing: border-box;
    z-index: 3;
    height: 60px;
    top: 10px;
    border-radius: 0px;
}
.timer img {
    display: block;
    margin: 0px;
    width: 100%;
    height: 100%;
    border-radius: 0px;
}
.timer .countdowntimer {
    width: 200px;
    left: 20px;
    position: absolute;
    box-sizing: border-box;
    z-index: 4;
    height: 45px;
    top: 21px;
    white-space: pre-wrap;
    overflow: visible;
    padding-bottom: 0px;
    font-family: Lato;
    font-size: 18px;
    font-weight: bold;
    color: rgb(255, 0, 0);
    line-height: 1;
    border-radius: 0px;
}

#info {
    width: 100%;
    color: #ffffff;
    position: fixed;
    text-align: center;
}

#intro {
    position: fixed;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.7);
    color: #ffffff;
    font-size: 40;
    z-index: 999;
}

#intro img {
    width: 30%;
    height: auto;
}

#start {
    display: inline-block;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    border-radius: 8px;
    padding: 14px 24px;
    border: none;
    transition: box-shadow 0.2s ease 0s, -ms-transform 0.1s ease 0s, -webkit-transform 0.1s ease 0s, transform 0.1s ease 0s;
    background: linear-gradient(to right, rgb(230, 30, 77) 0%, rgb(227, 28, 95) 50%, rgb(215, 4, 102) 100%);
    color: #fff;
    margin-top: 25px;
}

#intro.hidden {
    display: none;
}

#loading-screen{
    position: fixed;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    z-index: 1000;
    opacity: 1;
    transition: 0.5s opacity;
}

#loading-screen.fade-out {
    opacity: 0;
}

.spinner {
    margin: 100px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

.spinner > div {
    background-color: #ffffff;
    height: 100%;
    width: 6px;
    display: inline-block;

    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
    20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }	20% {
             transform: scaleY(1.0);
             -webkit-transform: scaleY(1.0);
         }
}
