body{
    font-family:Verdana;
    font-family: 'Public Sans', sans-serif;
    }

.contentBox
{position: absolute; 
}

h3 {
    font-size:1.2em;
	letter-spacing:-1px;
	margin:-10px 0px 0px 0px;
	font-family: 'Cantarell', sans-serif;
	font-variant:small-caps;
    border-bottom:3px dotted rgba(0,0,0,.5);
}



//*CONTACT FORM STYLE*//------------------

* {
  box-sizing: border-box;
}

/* Style inputs */
input[type=text], select, textarea {
  width: 90%;
  padding: 10px;
  border: 1px solid #63C0EF;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #7c67ad;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #63C0EF;
}

/* Style the container/contact section */
.container {
  border-radius: 5px;
  background-color: #CFA6F6;
  padding: 10px;
}

/* Create two columns that float next to eachother */
.column {
  float: left;
  width: 25%;
  margin-top: 6px;
  padding: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column, input[type=submit] {
    width: 90%;
    margin-top: 0;
  }
}
