body {
  position: relative;
}
.Doodles {
  position: absolute;
  z-index: 13;
}

#Blue-Squiggle {
  top: 20vh;
  left: -4vw;
  width: 8vw;
}

#Cardboard-Box {
  top: 55vh;
  left: 70vw;
  width: 9vw;
}

#Crayon {
  top: 140vh;
  left: 40vw;
  width: 8vw;
}

#Mannequin {
  bottom: 20vh;
  left: -5vw;
  width: 7vw;
}

#Orange-Tree {
  bottom: -5;
  left: 70vw;
  width: 8vw;
}

#Pink-Squiggle {
  top: 125vh;
  right: 2vw;
  width: 7vw;
}

#Red-Squiggle {
  bottom: 70vh;
  left: -4vw;
  width: 8vw;
}

#Spider {
  top: 0vh;
  left: 15vw;
  width: 7vw;
}

#Spikeball {
  top: 15vh;
  left: 75vw;
  width: 9vw;
}

@keyframes twirly {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.Doodles {
  position: absolute;
  z-index: -5;
  transition: transform 0.5s ease-in-out;
}

.Doodles:hover {
  animation: twirl 0.5s linear;
  transform: rotate(360deg);
}
