html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

button {
  outline: none;
  border: none;
  background: none;
  padding-top: 1em;
  &:focus {
    outline: none;
  }
}

$a: #1E1E24;
$b: #92140C;
$c: #FFF8F0;

/* START */

body {
  overflow: hidden;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-image: url("https://4luna.de/Luna-Server-Universum.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}


canvas {
  display: block;
  vertical-align: bottom;
}

.over {
  position: absolute;
  z-index: 10;
  user-select: none;
  background: transparent;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.title {
  display: block;
  font-size: 3em;
  /* font-size: 100px; */
  color: #fff;
  font-family: 'Monoton' ,cursive;
}

.play {
  width: 120px;
  height: 60px;
  border: solid 3px transparent;
  // border-bottom: solid 3px #fff;
  // border-top: solid 3px transparent;
  // border-left: solid 3px transparent;
  // border-right: solid 3px transparent;
  color: #fff;
  font: 100 1em Montserrat;
  text-transform: uppercase;
  transition: all .5s;
  &:hover {
    cursor: pointer;
    // background: rgba(255,255,255,0.2);
    border-color: #fff;
  }
}


section {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  user-select: none;
  background: transparent;
  justify-content: center;
  transition: all .3s;
}

section#a {
  left: 0;
}

section#b {
  left: 100%;
}

#a.active {
  left: -100%;
}
#b.active {
  left: 0;
}

span {
  font-family: Montserrat;
  color: #Fff;
}

span a{
  font-family: Montserrat;
  color: #Fff;
}

.logo span {
  font-family: Monoton;
  font-size: 100px;
}

.logo {
  top: 0;
}

.server-links {
  	padding-top: 12em;
}

.server-links a {
  margin: 0.5em;
}

.aha-logo img {
	height: 60px;
	margin-bottom: 2em;
}