<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.watersnood {
  position: relative;
  padding-bottom: 120px !important;
  overflow: hidden;
}

.zee {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 90px;
  width: 100%;
}

.golf {
  position: absolute;
  max-width: none;
  width: 200%;
  height: 100%;
  bottom: 0;
  opacity: 0.8;
  background-image: url(../img/golf.svg);
  background-repeat: repeat-x;
  background-position: bottom;
  animation: golf 12s -3s linear infinite;
  transform: translate3d(0, 0, 0);
}
.golf:nth-of-type(2) {
  animation: golf 18s linear reverse infinite;
  opacity: 0.5;
}

@keyframes golf {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
</pre></body></html>