@font-face {
  src: url(../assets/futura.ttf);
  font-family: futura;
}

@font-face {
  src: url(../assets/streamster.ttf);
  font-family: streamster;
}

@font-face {
  src: url(../assets/alien.ttf);
  font-family: alien;
}

@font-face {
  src: url(../assets/alien_solid.ttf);
  font-family: alienS;
}

*{
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

body::-webkit-scrollbar{
  display: none;
}

body{
  overflow-x: hidden;
  scrollbar-width: none;
}

header #title{
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(-30deg,#FF0081, #42C6FF);
}

header #title h1{
  color: #FFF;
  font-size: 8em;
  font-family: alienS;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 5vh;
  padding-top: 3vh;
  animation: neon1 1.5s ease-in-out infinite alternate;
}

#scroll{
  position: absolute;
  top: 85vh;
  left: 50%;
}

#header #scroll a {
  padding-top: 90vh;
}
#header #scroll a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}
#header #scroll a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  animation: scroll 2s infinite;
  box-sizing: border-box;
}

#header #scroll a span::after {
  position: absolute;
  bottom: -18px;
  left: 50%;
  width: 18px;
  height: 18px;
  content: '';
  margin-left: -9px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
}

@keyframes scroll {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

#maindiv{
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding-top: 2vh;
}

#maindiv a{
  text-decoration: none;
  color: white;
  border: #ED254E solid 3px;
  padding: 4%;
  font-size: 5em;
  color: #ED254E;
  transition: all 0.5s;
  font-family: alien;
  margin-bottom: 2vh;
  margin-left: .1%;
  margin-right: .1%;
}

#maindiv a:hover{
  box-shadow: 0 0 20px #FF1177, 0 0 35px #FF1177, 0 0 40px #FF1177, 0 0 50px #FF1177, 0 0 75px #FF1177;
  color: #FFF;
  animation: neon1 1s ease-in-out infinite alternate;
  animation-delay: .5s;
  -moz-animation-delay: .5s;
  text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FF1177, 0 0 70px #FF1177, 0 0 80px #FF1177, 0 0 100px #FF1177, 0 0 150px #FF1177;
  font-family: alienS;
}

/* Local sitos */

#local{
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

#local a{
  text-decoration: none;
  color: white;
  border: #FF9900 solid 3px;
  padding: 4%;
  font-size: 5em;
  color: #FF9900;
  transition: all 0.5s;
  font-family: alien;
  margin-bottom: 2vh;
  margin-left: .1%;
  margin-right: .1%;
}

#local a:hover{
  box-shadow: 0 0 40px #FF9900, 0 0 70px #FF9900, 0 0 80px #FF9900, 0 0 100px #FF9900, 0 0 150px #FF9900;
  color: #FFF;
  animation: local 1s ease-in-out infinite alternate;
  animation-delay: .5s;
  text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FF9900, 0 0 70px #FF9900, 0 0 80px #FF9900, 0 0 100px #FF9900, 0 0 150px #FF9900;
  font-family: alienS;
}

#localinfo{
  width: 100vw;
  height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: alienS;
}

#localinfo h3{
  font-size: 2.8em;
}

#localinfo p{
  font-size: 1.5em;
}

@keyframes neon1 {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FF1177, 0 0 70px #FF1177, 0 0 80px #FF1177, 0 0 100px #FF1177, 0 0 150px #FF1177;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #FF1177, 0 0 35px #FF1177, 0 0 40px #FF1177, 0 0 50px #FF1177, 0 0 75px #FF1177;
  }
}

@keyframes local {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FF9900, 0 0 70px #FF9900, 0 0 80px #FF9900, 0 0 100px #FF9900, 0 0 150px #FF9900;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #FF9900, 0 0 35px #FF9900, 0 0 40px #FF9900, 0 0 50px #FF9900, 0 0 75px #FF9900;
  }
}

@keyframes header {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #ff00de, 0 0 70px #ff00de, 0 0 80px #ff00de, 0 0 100px #ff00de, 0 0 150px #ff00de;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #ff00de, 0 0 35px #ff00de, 0 0 40px #ff00de, 0 0 50px #ff00de, 0 0 75px #ff00de;
  }
}

@media only screen and (max-width: 600px) {
  #local a{
    width: 90vw;
    font-size: 3em;
    text-align: center;
  }

  #maindiv a{
    width: 90vw;
    font-size: 3em;
    text-align: center;
  }

  header #title h1{
    font-size: 6.5em;
  }

  #localinfo h3{
    font-size: 2.5em;
  }

  #localinfo p{
    font-size: 1em;
  }
}
