html {
  height:100%;
}

body {
  margin:0;
}

 @font-face {font-family: Signatrue; src: url('css/Signatrue.ttf'); }



.bg {
  animation:slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-20deg, #222831 50%, #3f4652 50%);
  bottom:0;
  left:-50%;
  opacity:.5;
  position:fixed;
  right:-50%;
  top:0;
  z-index:-1;
}

.bg2 {
  animation-direction:alternate-reverse;
  animation-duration:4s;
}

.bg3 {
  animation-duration:5s;
}

.bg4 {
  animation-duration:6s;

}

 #enterButton {
  padding: 5px 12px;
  font-size: 12px;
  font-family: 'montserrat';
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  background-color:Transparent;
  border: 1px solid #d55931;
  color: #eee;
  border-radius: 6px;
  }

.content {
  bottom: 50%;
  left:50%;
  padding:10vmin;
  position:fixed;
  text-align:center;
  transform:translate(-50%, 50%);
}

h1 {
  font-size: 5rem;
  font-family:Signatrue;
  color: #eeeeee;
}

h2 {
  font-size: 3.5rem;
  font-family:montserrat;
  color: #d55931;
}

@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
