@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*{
    box-sizing: border-box;
}

body{
    background-image: url('snow.jpg');
    background-size: cover center;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: white;
    text-align: center;
    font-family: 'Poppins',sans-serif;
    margin: 0;
}

h1{
    font-size: 3.5rem;
    margin-top: -10rem;
    font-weight: normal;
}

.countdown-container{
    display: flex;
}

.container-li span{
    font-size: 1.2rem;
}

.big-text{
    font-weight: bold;
    font-size: 4rem;
    margin: 0 2rem;
}