body {
  background-color: black;
}
.smallcontainer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame {
  display: flex;
  justify-content: center;
  align-self: center;
  z-index: 1;
}
.picture {
  position: absolute;
  top: 170px;
  left: 540px;
  z-index: -5;
  /* display: flex;
  justify-content: center;
  align-self: center;
  z-index: -5; */
}
/* .smallcontainer {
  animation: spin 40s linear infinite;
} */

.eye {
  position: absolute;
  top: 400px;
  left: 100px;
  animation: spin;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  z-index: 5;
}
@keyframes spin {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(90deg);
  }
}
.type {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: red;
  font-size: 100px;
  letter-spacing: 5px;
  position: absolute;
  top: 370px;
  left: 400px;
  z-index: 5;
}
.type:hover {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: red;
  font-size: 100px;
  letter-spacing: 5px;
  position: absolute;
  top: 370px;
  left: 400px;
  z-index: 5;
  animation: avacado 5s linear infinite;
}
@keyframes avacado {
  100% {
    transform: rotate(360deg) scale(3);
  }
}
.daisy {
  position: absolute;
  top: 500px;
  left: 50px;
  animation: bounce;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-delay: 2.5s;
}
.daisytwo {
  position: absolute;
  top: 500px;
  left: 1000px;
  animation: bounce;
  animation-timing-function: ease-in-out;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  z-index: 5;
  animation-delay: 0.5s;
}
.daisyy {
  position: absolute;
  top: 450px;
  left: 900px;
  animation: bounce;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  z-index: 5;
  animation-delay: 3.1s;
}
.daisyyy {
  position: absolute;
  top: 550px;
  left: 750px;
  animation: bounce;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  z-index: 5;
  animation-delay: 2.1s;
}
.daisyyyy {
  position: absolute;
  top: 450px;
  left: 600px;
  animation: bounce;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  z-index: 5;
  animation-delay: 1.8s;
}
.daisyyyyy {
  position: absolute;
  top: 550px;
  left: 450px;
  animation: bounce;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  z-index: 5;
  animation-delay: 1.2s;
}
.daisyyyyyy {
  position: absolute;
  top: 500px;
  left: 300px;
  animation: bounce;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  z-index: 5;
  animation-delay: 0.5s;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0;
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
    opacity: 100;
  }
}
.lighter {
  top: 250px;
  left: 890px;
  position: absolute;
  transform: rotate(20deg);
}
.blackbox {
  background-color: black;
  box-shadow: black 5px;
  width: 70px;
  height: 100px;
  transform: rotate(20deg);
  top: 300px;
  left: 1050px;
  position: absolute;
  animation: moving;
  animation-timing-function: ease-out;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
@keyframes moving {
  0% {
    /* background-color: red; */
    left: 1050px;
    top: 100px;
  }

  100% {
    /* background-color: red; */
    left: 1050px;
    top: 300px;
  }
}
