body {
  background: url("clouds.JPG") repeat;
  background-size: cover;
  animation: scrollClouds 60s linear infinite;
}

@keyframes scrollClouds {
  from {
    background-position: center 0;
  }
  to {
    background-position: center 1000px;
  }
}

h1, h2, h3 {
  font-family: "UnifrakturCook", cursive;
}


h1 {
  font-size: 3em;
  margin-top: 50px;
}
