@charset "UTF-8";
/* CSS Document */


/* // General Styles for Splash */
body {
  margin: 0;
  height: 100%;
  font-family: "Roboto Condensed", sans-serif;
  overflow: hidden;
}

h1 {

}

/* // Splash title styles and animations */
.vertical-container {
  display: table;
  width: 100%;
  height: 100%;
}
.vertical-body {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.background {
  background-size: cover;
  animation: popup 2s;
}
.container {
  padding: 0 5px;
  margin: 0 auto;
  max-width: 960px;
  text-align: center;
  animation: blur 2s;
}

.title {
  font-family: trajan-pro-3, serif;
  font-weight: 400;
  font-style: normal;
  animation: popup 5s;
  animation-delay: 2s;

}

.button  {
  font-family: trajan-pro-3, serif;
  font-weight: 400;
  font-size: 1.7em;
  font-style: normal;
  animation: popup 2s;
  background-color: #00c6c7;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 27px 2px;
  cursor: pointer;
}

#soon {
  font-size: 3em;
  line-height: 70%;
}

#subline_P {
  font-size: 1.5em;
  line-height: 60%;
	
}

#Splash_Logo {
	padding-top: 30%;
	line-height: 150%;
	width: 100%;
	height: auto;
	animation: popup 4s;
}

@media (min-width: 768px) {
  .title {
    font-size: 50px;
  }
}

@media (min-width: 1200px) {
  .title {
    font-size: 70px;
  }
}

@keyframes blur {
  0% {
    filter: blur(12px);
  }
  100% {
    filter: blur(0px);
  }
}

@keyframes popup {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


#UnderConstruction button {
    margin-top: 25px;
    font-size: 21px;
    text-align: center;
    animation: fadein 2s;
    -moz-animation: fadein 2s; /* Firefox */
    -webkit-animation: fadein 2s; /* Safari and Chrome */
    -o-animation: fadein 2s; /* Opera */
}


/* // Particles */

/* // Particles as BG */
.background_particles {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -100;
	}

/* // Particles Generation*/

/* ---- reset ---- */ body{ margin:0; font:normal 75% Arial, Helvetica, sans-serif; } canvas{ display: block; vertical-align: bottom; } /* ---- particles.js container ---- */ #particles-js{ position:absolute; width: 100%; height: 100%; background-color: #ffffff; background-image: url(""); background-repeat: no-repeat; background-size: cover; background-position: 50% 50%; } /* ---- stats.js ---- */ .count-particles{ background: #000022; position: absolute; top: 48px; left: 0; width: 80px; color: #13E8E9; font-size: .8em; text-align: left; text-indent: 4px; line-height: 14px; padding-bottom: 2px; font-family: Helvetica, Arial, sans-serif; font-weight: bold; } .js-count-particles{ font-size: 1.1em; } #stats, .count-particles{ -webkit-user-select: none; margin-top: 5px; margin-left: 5px; } #stats{ border-radius: 3px 3px 0 0; overflow: hidden; } .count-particles{ border-radius: 0 0 3px 3px; }
