@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;
  font-size: 1vw;
}

@media screen and (max-width: 600px) {
  body {
    font-size: 1vw;
  }
}

@media only screen and (min-width: 600px) {
  body {
    font-size: .85vw;
  }
}

@media only screen and (min-width: 768px) {
  body {
    font-size: .75vw;
  }
}

@media only screen and (min-width: 992px) {
  body {
    font-size: .8vw;
  }
}

@media only screen and (min-width: 1200px) {
  body {
    font-size: .75vw;
  }
}

.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-links__wrap {
  margin-top: 1em;
  transform: scale(0);
  text-align: center;
  display: flex;
  flex-direction: column;
  font-size: 2rem;
}

.m-logo h1 {
  font-family: "Press start 2p", sans-serif;
  font-size: 6em;
  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: 7em;
  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(.5px);
}

.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;
}

.grid-wrapper {
  position: absolute;
  top: 50%;
  margin-top: -75vh;
  left: 50%;
  margin-left: -100vw;
  width: 200vw;
  height: 150vh;
  filter: blur(1px);
}

.m-grid {
  width: 100%;
  height: 100%;
  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);
  }
}

.button {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.5rem;

  /* animate all changes*/
  transition: all 0.15s ease-in-out;
}

.button:hover {
  background-color: #46a14a;
  /* Green */
  border: none;
  cursor: pointer;
  color: #f5f5f5;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.75rem;

  /* add drop shadow*/
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);

}

a,
a:active,
a:visited {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #f5f5f5;
  cursor: pointer;
  text-decoration: underline;
}

.m-timetable__wrap {
  margin-top: 4em;
  transform: scale(0);
}

.timetable {
  font-family: "Changa One", cursive;
  font-size: 4em;
  color: #fff;
  text-align: left;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.75);
}

.timetable>ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timetable>ul>li {
  padding-bottom: 1rem;
}

.timetable>p {
  font-size: 1.25rem;
  padding-top: 0.25rem;
}