@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');
*{
    box-sizing: border-box;
}
body{
    background-image: url(image.jpg);
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    
    flex-direction: column;
    align-items: center;
    margin: 0;
}

h1{
    font-size: 3rem;
    margin-top: -10rem;
    text-transform: uppercase;
    font-weight: normal;
    margin-top: 5rem;
    font-family: 'Poppins', sans-serif;
}
.countdown-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.big-text{
    font-weight: bold;
    font-size: 6rem;
    line-height: 1;
    margin: 0 2rem;
    color: #fff;
}
.countdown-el {
    text-align: center;
    color: #fff;
}
.countdown-el span{
    font-size: 1.5rem;
}
