@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    box-sizing: border-box;
}

body {
    background-image: url(https://s1.ibtimes.com/sites/www.ibtimes.com/files/styles/embed/public/2018/12/31/sydney-new-year-eve-fireworks.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    font-family: "Poppins, sans-sarif";
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
    overflow: hidden;
    color:greenyellow;
}
h1 {
    font-weight: normal;
    font-size: 60px;
    margin: -150px 0 40px;
}
.countdown {
    display: flex;
    transform: scale(2);
}
.time {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 15px;
}
.time h2 {
    font-weight: bold;
    font-size: 36px;
    line-height: 1;
    margin: 0 0 5px;
}
@media(max-width:500px) {
    h1 {
        font-size: 45px;
    }
    .time {
       margin: 5px; 
    }
    .time h2 {
        font-size: 12px;
    }
    .time small {
        font-size: 10px;
    }

}
