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


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

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

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

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

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

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

.logo canvas {
      margin-top: -85px;
      width: 500px;
      height: 300px;
      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;
}

.form {
  margin: auto;
  width: 800px;
}


.title {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
}

.subtitle {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(0, 146, 186);
  margin-top: -10px;
}

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

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

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