@import 'https://fonts.googleapis.com/css?family=Monoton';
@import 'https://fonts.googleapis.com/css?family=Press+Start+2P';
@import 'https://fonts.googleapis.com/css?family=Mr+Dafoe';
@import 'https://fonts.googleapis.com/css?family=Changa+One';
body {
  background: #000;
  background-image: linear-gradient(to bottom, #6A0275 10%, #040C4A 60%);
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.m-logo {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 501;
}
.m-logo__wrap {
  transform: scale(0);
  text-align: center;
}
.m-logo h1 {
  font-family: "Press start 2p", sans-serif;
  font-size: 62px;
  letter-spacing: -4px;
  font-weight: 400;
  margin: 0 0 0.25em;
  line-height: 1.25;
  background-image: -webkit-linear-gradient(top, #3fa8c6 0%, #3fa8c6 0%, #ff9ab2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.m-logo .subtitle {
  color: #ec008c;
  font-size: 50px;
  margin: 0;
  font-family: "Mr Dafoe", serif;
  text-shadow: 0px 1x 0px #530031;
}

.wrapper {
  width: 100%;
  height: 100vh;
  min-height: 400px;
  overflow: hidden;
  filter: blur(1px);
}
.wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(transparent 70%, rgba(0, 0, 0, 0.5) 30%);
  background-size: 3px 3px;
  z-index: 601;
  pointer-events: none;
}

.m-grid {
  position: absolute;
  top: 50%;
  margin-top: -75vh;
  left: 50%;
  margin-left: -100vw;
  width: 200vw;
  height: 150vh;
  transform: scaleY(0);
  background-image: linear-gradient(0deg, transparent 24%, rgba(236, 0, 140, 0.5) 25%, rgba(236, 0, 140, 0.9) 26%, transparent 27%, transparent 74%, rgba(236, 0, 140, 0.5) 75%, rgba(236, 0, 140, 0.9) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(236, 0, 140, 0.75) 25%, rgba(236, 0, 140, 0.25) 26%, transparent 27%, transparent 74%, rgba(236, 0, 140, 0.75) 75%, rgba(236, 0, 140, 0.25) 76%, transparent 77%, transparent);
  background-size: 50px 50px;
}
.m-grid.is-animating {
  -webkit-animation: fly 1s linear;
          animation: fly 1s linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes fly {
  0% {
    transform: perspective(300px) rotateX(80deg) translateY(0%);
  }
  100% {
    transform: perspective(300px) rotateX(80deg) translateY(50px);
  }
}

@keyframes fly {
  0% {
    transform: perspective(300px) rotateX(80deg) translateY(0%);
  }
  100% {
    transform: perspective(300px) rotateX(80deg) translateY(50px);
  }
}