* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: url('./img/background.png') 0 0 no-repeat;
    background-size: cover;
    font-family: 'Lato', sans-serif;
    overflow: hidden;
}
.next-year {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200px;
    opacity: .2;
}
main {
    width: 600px;
    height: 250px;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}
main h1 {
    margin-top: -50px;
    font-size: 60px;
    color: #fff;
}
.countdown {
    margin-top: 20px;
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.countdown-days,
.countdown-hours,
.countdown-minutes,
.countdown-seconds {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: #fff;
}