@import url('https://fonts.googleapis.com/css2?family=Mountains+of+Christmas:wght@700&display=swap');
body
{
    margin: 0;
    background: black;
}
canvas
{
    display: block;
    font-family: 'Mountains of Christmas', cursive;
    width: 32%;
    height:300px;
    position:absolute;
    box-shadow: 0 0 10px 10px white;
    margin-top: 50px;
}
.container
{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#timer, #count
{
    display: block;
    border: 2pt solid white;
    font-family: 'Mountains of Christmas', cursive;
    width:32%;
    position: relative;
    top: 315px;
    color: white;
    font-size: 4vw;
    text-align: center;
    box-shadow: 0 0 5px 5px white;
    margin: 50px;
    text-shadow: 2px 3px red;
}
.snowflake
{
    position: absolute;
    top: -50px;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: fall 5s linear infinite;
}
@keyframes fall
{
    from {
        transform: translateY(-100vh);
    }
    to {
        transform: translateY(100vh);
    }
}