@font-face {
font-family: "MyFirstFont";
src: url("assets/runescape_uf.ttf") format("truetype"),
     url("assets/runescape_uf.woff") format("woff");
}
h1 {
font-family: "MyFirstFont";
vertical-align: middle;
font-size: 3em;
}
body {
    font-family: myFirstFont
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.centered {
    text-align: center;
    font-family: myFirstFont
}

/* wave script */
.wave-container {
  text-align: center;
}

.wave-letter {
  animation: wave-animation 1s infinite;
  transform-origin: bottom;
  display: inline-block;
}

@keyframes wave-animation {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* wave spacing */
.wave-letter:nth-child(2) {
  animation-delay: 0.1s;
}
.wave-letter:nth-child(3) {
  animation-delay: 0.2s;
}
.wave-letter:nth-child(4) {
  animation-delay: 0.3s;
}
.wave-letter:nth-child(5) {
  animation-delay: 0.4s;
}
.wave-letter:nth-child(6) {
  animation-delay: 0.5s;
}
.wave-letter:nth-child(7) {
  animation-delay: 0.6s;
}
.wave-letter:nth-child(8) {
  animation-delay: 0.7s;
}
.wave-letter:nth-child(9) {
  animation-delay: 0.8s;
}
.wave-letter:nth-child(9) {
  animation-delay: 0.9s;
}
#corner {
  border-radius: 25px;
  background: #73AD21;
  padding: 20px;
  width: 200px;
  height: 150px;
}
@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  93% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(540deg);
  }


.spin img {
    animation: rotating 10s infinite;
    transition: 0.70s ease-in-out;
    -webkit-transition: 0.70s;
    -moz-transition: 0.70s;
    -ms-transition: 0.70s;
    -o-transition: 0.70s;
}