body {
    padding: 0;
    margin: 0;
    background-color: #9ed2ec;
}

.container {
    height: 510px;
    width: 350px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
}

.snowman {
    position: relative;
    left: 5px;
    top: 53px;
}

.face {
    background-color: white;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    position: relative;
    top: 100px;
    left: 110px;
}

.eye-l,
.eye-r {
    height: 15px;
    width: 15px;
    background-color: black;
    border-radius: 50%;
    position: relative;
}

.eye-l {
    top: 40px;
    left: 35px;
}

.eye-r {
    top: 25px;
    left: 75px;
}

.nose {
    height: 0;
    width: 0;
    border-top: 30px solid #f7880f;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    position: relative;
    top: 35px;
    left: 57px;
}

.hat {
    height: 10px;
    width: 120px;
    background-color: #2b303a;
    position: relative;
    bottom: 50px;
    left: 15px;
    transform: rotate(20deg);
}

.htop {
    height: 0;
    width: 60px;
    border-bottom: 43px solid #2b303a;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: relative;
    bottom: 42px;
    left: 24px;
}

.body {
    height: 200px;
    width: 200px;
    background-color: white;
    border-radius: 50%;
    position: relative;
    top: 90px;
    left: 70px;
}

.buttons {
    position: relative;
    top: 60px;
    left: 90px;
}

.b1,
.b2,
.b3 {
    height: 15px;
    width: 15px;
    background-color: #2b303a;
    border-radius: 50%;
    margin-bottom: 20px;
}

.handl {
    background-color: #84382a;
    height: 5px;
    width: 100px;
    position: relative;
    bottom: 68px;
    right: 67px;
    transform: rotate(25deg);
}

.s1 {
    background-color: #84382a;
    width: 30px;
    height: 5px;
    position: relative;
    bottom: 10px;
    left: 5px;
    transform: rotate(45deg);
}

.handr {
    background-color: #84382a;
    height: 5px;
    width: 100px;
    position: relative;
    transform: rotate(-25deg);
    bottom: 73px;
    left: 160px;
}

.s2 {
    background-color: #84382a;
    width: 30px;
    height: 5px;
    position: relative;
    bottom: 10px;
    left: 65px;
    transform: rotate(-45deg);
}

.scarf {
    background-color: #e74339;
    width: 120px;
    height: 35px;
    position: relative;
    border-radius: 10px;
    bottom: 110px;
    left: 110px;
    /* transform: rotate(-15deg); */
}

.sc1 {
    position: relative;
    height: 0;
    width: 20px;
    border-bottom: 50px solid #e74339;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    transform: rotate(-15deg);
    top: 25px;
    left: 80px;
}

.sc2 {
    position: relative;
    height: 0;
    width: 20px;
    border-bottom: 70px solid #e74339;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    bottom: 35px;
    left: 70px;
    transform: rotate(-15deg);
}

.snow {
    background-color: white;
    height: 50px;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.snowfall {
    background: url(snowfall.png);
    height: 100vh;
    width: 100vw;
    background-repeat: repeat;
    position: relative;
    animation: snow 1.6s linear infinite;
}

@keyframes snow {
    0% {
        background-position: 0 0;
    }

    20% {
        background-position: 50px 50px;
    }

    40% {
        background-position: 100px 100px;
    }

    60% {
        background-position: 150px 150px;
    }

    80% {
        background-position: 200px 200px;
    }

    100% {
        background-position: 250px 250px;
    }
}