/* this is just to set up a playground, the animation code is below */
body {
  background: lightblue;
}
#wrapper {
  background: clear;
  display: flex;
  gap: 20px;
  margin: 20px auto;
  width: 800px;
}
#text-div {
  margin: 20px 10px 20px 20px;
  width: 50%;
}
#graphics-anim {
  margin: 20px 20px 20px 10px;
  height: 200px;
  width: 50%;
  position: relative;
}

/* here's the meat and potatoes */
/* create 3 objects to animate, overlapping, and positioned */
/* add an animation, starting at different times for effect */
/*#item-1{
  height: 150px;
  width: 240px; 
  position: absolute;
}*/
#item-1 {
  background: clear;
  top: 20px;
  left: 500;
  animation-name: floaty;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-delay: 1s;
}

@keyframes floaty {
    0%,100% { transform: translate(0px, 0px) rotate(5deg);
		 }
    50%  { transform: translate(0px, -40px) rotate(10deg);
		 }
}