@import url(https://fonts.googleapis.com/css?family=Roboto:200,400,700);

::selection {
  background: #00BCD4; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #00BCD4; /* Gecko Browsers */
}

body {
}

.section {
    margin: 0px;
    display: flex;
    background-color: #455A64;
}

#super {
  height: 100vh;

  justify-content:center;
  align-content:center;
  flex-direction:column; /* column | row */

  transition: background-color 0.3s ease;
  background-color: #455A64;
}

h1 {
  margin: 0;
  color: #FFFFFF;
  text-align: center;
  vertical-align: middle;

  font-family: 'Roboto', sans-serif;
  font-size: 10vw;
  font-weight: 700;
}

h2 {
  margin: 0 0 35px 0;
  color: #FFFFFF;

  font-family: 'Roboto', sans-serif;
  font-size: 1.5em;
  font-weight: 200;
}

.last-word {
  transition: background-color 0.3s ease;
  background-color: null;
}

.first-word {
  transition: color 0.3s ease;
  color: #fff;

  font-weight: 400;
  font-size: 10vw;
}


a:hover .first-word {
  color: #00BCD4;
}

a:hover .last-word {
  background-color: #00BCD4;
}








#footer {
  padding-top: 10px;
  padding-bottom: 20px;

  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#footer h2 {
}

#footer .note-signup {
}





form {
  display: flex;
  flex-direction: column;
}

input {
  background: none;
  border: solid 2px #00BCD4;
  color: #00BCD4;
  padding: 15px 40px;
  font-size: 18px;
  /*display: inline-block;*/
}
input:focus, input:active {
  outline: none;
}
input[type="text"], input[type="email"] {
  border: none;
  border-bottom: solid 2px #00BCD4;
}
input[type="submit"]:active {
  color: white;
  background: #00BCD4;
}

.input-group {
  display: flex;
  margin-bottom: 20px;
  position: relative;
}
.input-group input {
  padding: 15px 0px;
}
.input-group label {
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  color: #fff;
  pointer-events: none;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.input-group input:focus + label,
.input-group input.has-value + label {
  top: -10px;
  font-size: 12px;
  color: #fff;
}
