




.title {
  font-size: 2.5rem;
  font-family: 'Lobster', cursive;
}

.wrapper {
  animation: scroll 70s linear infinite;
  background: url("https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fpapers.co%2Fwallpaper%2Fpapers.co-vu80-digital-dark-dot-red-pattern-blue-35-3840x2160-4k-wallpaper.jpg&f=1&nofb=1&ipt=d3350e2691078473b8b2a8ad739ead52f30da552685d1caf7fe245b6407c996b&ipo=images"), #111111;
  color: #eee;
  min-width: 360px;
  width: 100%;
  height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  perspective-origin: 50% 50%;
  
}

@keyframes scroll {
   100%{
    background-position:0px -3000px;
  }
}

@media (prefers-reduced-motion) {
  .wrapper {
    animation: scroll 200s linear infinite;
  }
}

@media (min-width: 670px) {
  .title {
    font-size: 5rem;
  }
}