p{
    text-align: center;
}

.contactForm{
    display: block;
    text-align: center;
    overflow: hidden;
}

form{
    width: 80%;
    display: block;
    margin: 1% auto;
}
label{
    float: left;
    color: #46c8eb;
    font-family: 'Agency FB Bold', arial;
    font-size: 130%;
}

input[type=text], select, #message {
  font-family: 'Agency FB Bold', arial;
  font-size: 100%;
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: none;
}

#message{
    max-height: 80px;
    min-height: 80px;     
}

input[type=submit] {
  background-color: #46c8eb;
  display: block;
  left: 5%;
  margin: 0;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Agency FB Bold', arial;
  font-size: 150%;
}

input[type=submit]:hover {
  background-color: lightsteelblue;
}

input[type=submit]:focus {outline:none;}