#object{
    width:100px;
    height:100px;
    display: flex;
    position:fixed;
    justify-self: center;
    margin-top:18vh;
    background-color: red;
}

@keyframes bounceAnimation {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

@keyframes zoomInAnimation {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 1; background: radial-gradient(circle, #ff0000 0%, #ffc800 100%);}
}