body {
  background-image: url(/img/bg.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 15px;
  min-height: calc(100vh - 30px);
  overflow-x: hidden;
}

.clear {
  clear: both;
}

header {
  text-align: center;
}

header h1 {
  animation: rainbow 10s infinite linear alternate;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to left, violet, indigo, blue, green, yellow, orange, red, violet);
  background-size: 300px;
  display: inline-block;
  font-size: 4em;
  font-weight: bold;
  margin: 0;
  -webkit-text-fill-color: transparent;
}

@keyframes rainbow {
  0% {
    background-position-x: 0px;
  }

  100% {
    background-position-x: 100vw;
  }
}

header img {
  height: 200px;
  margin-right: 15px;
  vertical-align: middle;
  width: auto;
}

header div {
  animation: woop infinite 1s alternate ease-in-out;
  color: yellow;
  display: inline-block;
  font-weight: bold;
  left: 40px;
  position: relative;
  text-shadow: black 1px 1px 4px;
  text-transform: uppercase;
  top: -35px;
  transform: rotate(-15deg);
}

@keyframes woop {
  0% {
    transform: scale(1) rotate(-10deg);
  }

  100% {
    transform: scale(1.2) rotate(-20deg);
  }
}

.content {
  background-color: rgba(255, 255, 255, .5);
  padding: 15px;
}

.content p {
  margin-top: 0;
}

blockquote {
  border-left: 5px solid gray;
  margin: 15px 0;
  padding: 10px;
}

.right {
  float: right;
  margin: 0 0 15px 15px;
}

.right img {
  float: right;
  height: auto;
  margin: 0 0 15px 15px;
  max-width: 250px;
  width: 100%;
}

.screenshots {
  text-align: center;
}

.screenshots img {
  height: auto;
  margin-top: 5px;
  max-width: calc(60% - 300px);
  vertical-align: top;
}

.screenshots img.full,
#ytplayer {
  max-width: calc(100% - 300px);
}

footer {
  font-size: 0.7em;
  margin: 30px 5px 5px;
  text-align: right;
}

@media screen and (max-width: 670px) {
  .right {
    display: none;
    float: none;
    margin: 0 auto;
  }

  .right img,
  .screenshots img,
  .screenshots img.full,
  #ytplayer {
    max-width: 100%;
  }

}

/* Leaves or snow bullshit */
#falling {
  height: 100%;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100%;
}

.leaf,
.snow,
.sakura {
  background-size: 100% 100%;
  height: 35px;
  pointer-events: none;
  position: absolute;
  width: 35px;
}


.leaf {
  background-image: url(/img/leaf.png);
}
.snow {
  background-image: url(/img/snow.png);
}
.sakura {
  background-image: url(/img/sakura.png);
}


