body {
  background-color: white;
  color: black;
  font-family: Verdana;
  display: flex;
  min-width: 100vw;
  min-height: 100dvh;
  align-items: center;
  flex-direction: column;
}

img{
  animation: 3s infinite alternate wiggle;
}

@keyframes wiggle {
  from {
    transform: translate(-100px, 0px);
  }
  
  to{
    transform: translate(100px, 0px);
  }
}