@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes grow {
  0% {
    width: 100px;
  }
  100% {
    width: 450px;
  }
}
body {
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

img {
  position: absolute;
  animation: fade-in 6.5s, grow 6.5s;
  width: 450px;
}/*# sourceMappingURL=main.css.map */