html,
body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

body {
    text-align: center;
    background: #000000 url(/images/bg.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

h1 {
    font-family: Arial, Helvetica;
    font-size: 54px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 8vh 0 0 0;
    display: block;
    text-shadow: 0px 0px 9px rgba(0, 0, 0, 1);
}

.wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 6vh;
    left: 50%;
    transform: translate(-50%, 0);
}

.clock {
    width: 100%;
}

.flip-clock-divider .flip-clock-label {
    color: white;
}

.flip-clock-divider .flip-clock-label {
    font-size: 14px;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 1);
}

.flip-clock-wrapper ul li a div div.inn {
    color: white;
}

.flip-clock-dot {
    background: #FFFFFF;
}

@media only screen and (max-width: 1150px) {
    /* {
        background-size: 140%;
    }*/
    .wrap {
        width: 60vw;
        transform: translate(-50%, 0) scale(0.8);
    }
    .clock {
        display: flex;
        justify-content: center;
    }
}

@media only screen and (max-width: 767px) {
    /*body {
        background-size: 200%;
    }*/
    h1 {
        font-size: 34px;
    }
    .wrap {
        width: 100vw;
        transform: translate(-50%, 0) scale(0.8);
    }
}

@media only screen and (max-width: 479px) {
    /*body {
        background-size: 400%;
    }*/
    .wrap {
        width: 200vw;
        transform: translate(-50%, 0) scale(0.6);
    }
}