html {
    font-family:'Poppins', sans-serif;
}

p{
    font-family: 'Poppins', sans-serif;
}

.container {
    margin-top:200px;
    text-align: center;
}

.countdown-image {
    width: 650px;
    height: auto;
}

@media only screen and (max-width: 768px)
{
    .container {
        margin-top:150px;
        text-align: center;
    }   
    
    .countdown-image {
        width: 100%;
        height: auto;
    }
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-value {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.time-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #666;
}      

body {
    margin: 0;
    padding: 0;
    display: flex;
    font-family:'Poppins', sans-serif;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
}