
 /*About page (honestly I'm not sure what all is going on here)*/
 
.aboutbody {
	width: 60%;
	display: block;
	margin: auto;
}
	
  .aboutbody img {
	  display: inline-block;
	  width: 40%;
	  float: left;
	  margin-right: 12px;
  }
  
  .aboutbody p {
	  font-size: 1.18em;
	  text-align: left;
  }
  
 h3 {
	  padding: 15px;
  }
  
  .fullspan {
	  display: block;
	  clear: both;
	  width: 100%;
	  padding-top: 10px;
  }
  
  
 @media screen and (max-width: 600px) {
	 .aboutbody {
		 width: 80%
	 }
	 .aboutbody img {
		 float: none;
		 width: 80%
	 }
 }
 
 /*STYLE CONTACT FORM*/
 .formStyle {
	 float: clear;
	display: block;
	margin: auto;
	width: 50%;
 }
 
 input[type=text], input[type=email], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

textarea {
  min-height: 100px;
}

input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #02023A;
}

label {
	font-size: 1.1em;
}

 @media screen and (max-width: 600px) {
	.formStyle {
		width: 80%;
	}		
 }