body {
  width: 100vw;
  height: 100vh;
  background: url('../images/einstein/einstein-colorful-1568.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: white;
  text-shadow: -1px 1px 0px rgba(0, 0, 0, 0.5);
  font-family: 'Open Sans'
}

@media screen and (max-width: 600px){ 
  body {
        width: 100vw;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: white;
  text-shadow: -1px 1px 0px rgba(0, 0, 0, 0.5);
  font-family: 'Open Sans';`
   background: url('../images/einstein/einstein-colorful-620.jpg');
  }
}


.app-container {
background: -webkit-linear-gradient(rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
background: -moz-linear-gradient(rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
background: -o-linear-gradient(rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
background: linear-gradient(rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */ /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
  height: 100vh;
}

.logo {
    width: 30vw;
    max-width:250px;
    min-width: 150px;
    margin-top: 1vh;
}

.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 10;
      -ms-flex: 10 0 60vh;
          flex: 10 0 60vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.quote {
font-size: 5vh;
color: white;
font-weight: bold;
font-family: 'Ovo';
text-align: center;
  margin-top: 16vh;
  margin-bottom: 10vh;
  margin-left: 1vw;
  margin-right: 1vw;
}

.by {
    font-size: 60%;
    margin-left: 75%;
    margin-top: 1vh;
}
.pitch {
    font-size: 3vh;
    max-width: 950px;
    width: 80vw;
    margin-bottom: 1vh;
}

.disclaimer {
    text-align: center;
    width: 80vw;
    max-width: 950px;
    margin-top: 4px;
    font-size: 2vh;
}

.optin-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80vw;
  max-width: 950px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
  border: solid 24px rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 8px 8px rgba(0, 0, 0, 0.3);
}

.optin-form > * {
  height: 50px;
  border: 0;
  margin: 0;
  padding: 0;
}

.email-field {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
  text-align: center;
  color: #333;
  background-color: #FEFEFE;
  border-radius: 4px 0px 0px 4px;
}

.cta {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: green;
  color: #FEFEFE;
  border-radius: 0px 4px 4px 0px;
  min-width: 90px;
}

