/* basic reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-size: 22px;
    line-height: 44px; 
    color: rgb(213, 112, 11);
    background-color: rgb(240, 175, 125);
    font-size: 50px;
    font-family: "Spicy Rice", serif;
    width: 100%;
    height: 100vh;
}

#dino {
    width: 200px;
    position: absolute;
    /*left:calc(50% - 300px);
    top: 100px;*/
    transition: all 0.9s cubic-bezier(0.58, 0.32, 0.32, 1.6);
}



.move {
    transform: translateX(200px);
      /* Start the shake animation and make the animation last for 0.5 seconds */
        animation: shake 0.5s;
      
        /* When the animation is finished, start again */
        animation-iteration-count: 1;
      
}
    
  
      
@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); }
  }


