*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100vh;
    background:  lightblue;
}

#Snowy{
    width: 200px;
    position :absolute;
    left: calc(50%-100%);
    top: 100px;
    transition: all 0.5s  cubic-bezier(0.075, 0.82, 0.165, 1);



}
.move{
    transform: translateX(100px);
    animation: shake 0.5s;

    /* When the animation is finished, start again with: infinite */
    animation-iteration-count: 2;
    
}
@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
  }

/* Optional SVG Animation */
.happy {
    animation: shake 0.5s;
    /* When the animation is finished, start again with: infinite */
    animation-iteration-count:1;
}
/* Moving the Mouth */
.happy path[fill="black"] {
    rotate: -18deg;
    transform-box: border-box;
    transform-origin: center;
    transform: scaleY(0.5);
    transition: all 0.1s linear;
}
/* Shaking Eyeballs */
.happy circle[fill="black"] {
    transform-box: border-box;
    transform-origin: center;
    animation: shake 0.5s;
    animation-iteration-count:1;
}