body {
	background: #1F1F1F url(../images/exclusive_paper.png);
	font-family: 'Montserrat', sans-serif;
}

h2 {
  font-size: 4rem;
  font-family: 'Marck Script', cursive;
  text-shadow: 2px 2px 2px grey;
  margin-bottom: 2%;
  color: #05224b;
}

.start {
	padding-top: 5%;
	text-align: center;
	padding-bottom: 100px;
}

input[type=text], select, textarea {
  width: 90%;
 	margin: auto;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  border-radius: 5px;
}

input[type=submit] {
  background-color: rgba(19, 52, 71, 1);
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: rgba(101, 158, 189, 1);
}

/* Style the container/contact section */
.contact-container {
  border-radius: 5px;
  padding: 10px;
  font-family: 'Montserrat';
}

.form-row {
	max-width: 600px;
	margin: auto;
/* 	background-color: rgba(243, 244, 246, 1); */
  background-color: #edebe9;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.9), 0 3px 5px 0 rgba(0, 0, 0, 0.9);
}
/* Clear floats after the columns */
.form-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) {
   input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}