body {
    background-image: url(santablack.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: red;
}


.heading {
    display: flex;
    justify-content: center;
}

h1 {
    font-size: 60px;
    background-color: rgba(4, 182, 108, 0.8);
    color: rgb(255, 232, 27);
    padding: 20px;
    border: 1px solid black;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.container {
    display: flex;
    justify-content: space-around;
}

.block {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    width: 150px;
    height: 200px;
    background-color: rgba(255, 235, 205, 0.842);
    border: 3px solid rgb(254, 198, 77);
    border-radius: 20px;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    align-self: center;
    font-size: 20px;
}

.days,
.hours,
.minutes,
.seconds {
    font-family: 'Montserrat', sans-serif;
    align-self: center;
    font-size: 30px;
}

.red {
    color: brown;
    font-family: 'Oswald', sans-serif;
}


.play {
    width: 100px;
    height: 100px;
    background-image: url(play.png);
    background-size: contain;
    background-color: yellowgreen;
    border-radius: 30%;
}

.pause {
    background-image: url(pause.png);
    background-color: yellowgreen;
    background-size: contain;
    width: 100px;
    height: 100px;
    border-radius: 30%;
}


@media all and (max-width: 800px) {
    h1 {
        font-size: 40px;
    }
}

@media all and (max-width: 400px) {
    h1 {
        font-size: 30px;
    }

    .block {
        margin-top: 20px;
        width: 150px;
        height: 200px;
        background-color: rgba(255, 235, 205, 0.842);
        border: 3px solid rgb(254, 198, 77);
        border-radius: 10px;

    }

    .container {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    body {
        background-image: url(santablack.webp);
        background-size: cover;
        background-repeat: no-repeat;
        background-color: red;
    }

}

#snowing {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    height: 100vh;
    min-width: 100%;

}