body {
  background-image: url("winrer.jpeg");
  background-size: auto;
  background-repeat: no-repeat;
}

.welcome {
  text-shadow: rgb(0, 0, 0) 1px 0 10px;
  color: rgb(255, 255, 255);
  font-family: "Courier New", Courier, monospace;
  font-size: 100px;
  display: flex;
  justify-content: center;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  animation: rotater 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}
@keyframes rotater {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(30deg) scale(1);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  .welcome {
    font-size: 30px;
  }
}/*# sourceMappingURL=main.css.map */