.contact {
  text-align: center;
  font-size: 2em;
}

p, span {
  font-size: 1em;
  text-align: center;
}

form {
	padding: .5em;
	margin: .5em;
}

#formCopy {
  font-style: italic;
  font-size: 1em;
}

form select, form input, form textarea {
	font-family: 'Raleway', sans-serif;
	font-size: 1.5em;	
}

input[type=text]:focus, input[type=email]:focus {
  -webkit-animation-name: textField; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 1s; /* Safari 4.0 - 8.0 */
  animation-name: textField;
  animation-duration: 1s;
  background: #f1f1f1;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes textField {
  from{background: #fff;}
  to {background: #f1f1f1;}
}


/* Standard syntax */
@keyframes textField {
  from{background: #fff;}
  to {background: #f1f1f1;}
}

#submitForm {
  background: #333;
  font-size: 1.25em;
  font-family: 'Bilbo Swash Caps', monospace;

}


fieldset {
	padding-top: 1em;
}

.container {
	padding-top: 1em;
}

.thankYou {
  margin: 1em;
  padding: 1em;
}

@media only screen and (max-width:700px){
  #submitForm {
    margin: auto;
  }
}

