 
@import url(https://fonts.googleapis.com/css?family=Poppins");


html, body {
      margin: 0;
    background-color: #050505;
    color: #fbfbfb;
    margin: 0;
    font-family: Poppins, 'Helvetica Neue', sans-serif;
}

.lightmode {
  color: #050505;
  background-color: #fbfbfb;
}

main {
  display: block;
  
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
  max-width: 640px;
  margin:auto;
}

.container main {
  margin: 1rem;
}

.logo {
  overflow:hidden;
  margin-top: 60px;
  margin-bottom: 60px;
}

.coming-soon {
  text-align: center;
  margin-bottom:30px;
  margin: 1rem;
}

.logo canvas {
      margin-top: -45px;
      width: 300px;
      height: 180px;
      display: block;
   
  /* Fade in from left over first 30px */
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 30px, rgba(0,0,0,1));
  mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 30px, rgba(0,0,0,1));


  /* Optional: smooth transition */
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.logo canvas

.form {
  margin: auto;
  max-width: 640px;
}

iframe{
  max-width: 100%;
}

.title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fbfbfb;
}
.lightmode .title {
  color: #050505;
}
.subtitle {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 146, 189);
  margin-top: -10px;
}

.wordmark {
  text-align: center;
  margin-top: -65px;
}

.title {
  text-shadow: 0 0 5px rgba(255,255,255,0.3);
}

.subtitle {
  text-shadow: 0 0 5px rgba(0,200,255,0.3);
}

.legal {
  color: #ccc;
  text-align: center;
  margin: 1rem;
}

.legal a {
  color: #ccc;
}

@media screen and (min-width: 768px) {
  .logo canvas {
      margin-top: -85px;
      width: 500px;
      height: 300px;
      display: block;
  }

  .wordmark {
    text-align: center;
    margin-top: -105px;
  }

  
  .title {
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fbfbfb;
  }
  .subtitle {
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 146, 189);
    margin-top: -10px;
  }

}