@font-face {
  font-family: Playball;
  src: url(fonts/Playball.ttf);
}

@font-face {
  font-family: Logos;
  src: url(fonts/ember-logos.ttf);
}

body {
  background: black;
  color: white;
  margin: 0;
}

.content-wrapper {
  max-width: 90vw;
  margin: 20px auto;
  position: relative;
  z-index: 1;
}

#video-bg {
  background-attachment: scroll;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: scale(1);
  width: 100vw;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#video-bg>video {
  min-width: 100%;
}

#video-bg:before {
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  background-image: url(img/gplay.png), linear-gradient(0deg, transparent 10%, rgba(0, 0, 0, 0.6) 70%);
  background-size: 100px, cover;
  background-position: center, 0% 0%;
  background-repeat: repeat, repeat;
}

article.content {
  margin: 30px;
  padding: 50px;
}

article h1 {
  font-family: Playball;
  text-align: center;
  font-size: 5vw;
  margin: 0 0 30px 0;
}

.refsheet {
  width: 60vw;
  display: block;
  margin: 0 auto;
}

.links-flex {
  display: flex;
  flex-flow: wrap;
  justify-content: space-evenly;
  padding-top: 30px;
}

.link-item.button a {
  padding: 15px 60px;
  margin: 15px;
  text-align: center;
  font-family: Playball;
  font-size: 45px;
  color: white;
  text-decoration: none;
  display: block;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

@media all and (max-width: 1250px) {
  .refsheet {
    width: 100%;
  }
}