@import url('https://fonts.googleapis.com/css?family=EB+Garamond|Oswald|Special+Elite|Josefin+Slab');

.subscribe-container {
  height: 1000px;
  background-color: #343434;
}
.subscribe-content {
  margin: 0 auto;
  padding:10% 0 10% 0;
  max-width:650px;
  text-align: center;
}
form {
  display: grid;
  align-items: center;
  justify-items: center;
  grid-column-gap: 10px;
  grid-template-columns: repeat(2, auto);

  }
.emailAddress {
  width: 300px;
  min-height: 20px;
  padding: 20px;
  border-radius: 5px;
  color: #343434;
  font-size: 20px;
}
h1 {
  color:#ffffff;
  font-size:30px;
  line-height:35px;
  font-family: "Special Elite";
}

h2 {
  color:#ffffff;
  font-size:25px;
  line-height:35px;
  font-family: "Special Elite";
}
h6 {
  font-family:"Josefin Slab";
  color:#c2c2c2;
  font-size:12px;
  line-height:26px;
  padding-left:10px;
  
}
p {
  color: #ffffff;
  font-family: "Josefin Slab";
  font-size: 20px;
  line-height: 30px;
  font-weight: lighter;
}

a {
    color: #0098d1;
    text-decoration: none;
}

#white {
  background-color: #fff;
  color: #343434;
  font-size: 30px;
  font-family: Arial, Helvetica, sans-serif;
}
#logoType {
  font-family: "Special Elite";
}

#uxWritingFundamentals {
  padding: 20px 30px 20px 30px;
  font-size: 20px;
  font-family: "Helvetica neue";
  color: #ffffff !important;
  background: #008BB7;
  border-radius: 5px;
  border: none;
  font-weight: 800;
  outline: none;
  cursor: pointer;
} a {
  color: #ffffff;

}


@media screen and (max-width:768px) {

 form {
   grid-template-columns: repeat(1, auto);
   grid-row-gap: 20px;
 }
 .emailAddress {
   width: 80%;
 }
 .formEmailButton {
   width: 95%;
 }
 .subscribe-content {
   width: 90%;
 }
}

@media screen and (max-width:400px) {

  form {
    grid-template-columns: repeat(1, auto);
    grid-row-gap: 20px;
  }
  .emailAddress {
    width: 80%;
  }
  .formEmailButton {
    width: 95%;
  }
  .subscribe-content {
    width: 90%;
  }
}