* {
 box-sizing: border-box;
}

*:before,
*:after {
 box-sizing: border-box;
 color: black;
}

html,
body {
 height: 100%;
 position: relative;
 background-color: #e3e7e8;
}

.main-container {
 min-height: 100vh; /* will cover the 100% of viewport */
 overflow: hidden;
 display: block;
 position: relative;
 padding-bottom: 40px; /* height of your footer */
 background-color: #f7e05f;
 width: 700px;
}

.centered {
 width: 900px;
 height: 1100px;
 margin: 0 auto;
}


header {
 width: 100%;
 height: 110px;
 background-color: #7b4a9e;
}

img {
	display: block;
#	top: 25%;
	margin: 0 auto;
	padding-top: 20px;
	position: relative;
	}

section {
 width: 100%;
 height: 840px;
 background-color: #4A6883;
 padding: 10px;
}

.navigation {
 border-radius: 6px;
 width: 335px;
 height: 42px;
 background-color: #E7D254;
 position: relative;
 top: 15px;
 left: 500px;
 margin-bottom: 28px;
 color: white;
 font-size: 18px;
 font-family: "Helvetica", sans-serif;
 font-weight: bold;
 padding-top: 12px;
 padding-left: 16px;
 word-spacing: 15px;
}


footer {
 # position: absolute;
 bottom: 0;
 width: 100%;
 height: 40px;
 background-color: #E7D254;
 text-align: center;
 padding: 10px;
 color: white;
 font-size: 18px;
 font-family: "helvetica", sans-serif;
 font-weight: bold;
}

.home-page {
 width: 600px;
  margin: 0 auto;
 padding: 15px;
 padding-top: 60px;
 color: white;
 font-size: 24px;
 font-family: "helvetica", sans-serif;
 
}

.contact-container {
  width: 600px;
  padding: 15px;
  margin: 0 auto;
  color: white;
 font-size: 18px;
 font-family: "helvetica", sans-serif;
}


/* Contact form layout below */

contact-text {
  color: white;
 font-size: 18px;
 font-family: "helvetica", sans-serif;
}


{
 box-sizing: border-box;
}

*:before,
*:after {
 box-sizing: border-box;
 color: black;
}

html,
body {
 height: 100%;
 position: relative;
 background-color: #e3e7e8;
}


.contact-form {
  margin-bottom: 17px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
}

.contact-form input[type='text'] {
  font-family: "Helvetica", sans-serif;
  background-color: #e3e7e8;
  border: 2px solid #D6D9DC;
  border-radius: 3px;
  width: 100%;
  padding: 7px;
  font-size: 14px;
}

.contact-email {
  margin-bottom: 40px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
}

.contact-email input[type='email'] {
  font-family: "Helvetica", sans-serif;
  background-color: #e3e7e8;
  border: 2px solid #D6D9DC;
  border-radius: 3px;
  width: 100%;
  padding: 7px;
  font-size: 14px;
}

.contact-phone {
  margin-bottom: 40px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
}

.contact-phone input[type='tel'] {
  font-family: "Helvetica", sans-serif;
  background-color: #e3e7e8;
  border: 2px solid #D6D9DC;
  border-radius: 3px;
  width: 100%;
  padding: 7px;
  font-size: 14px;
}

.contact-email label {
  font-family: "Helvetica", sans-serif;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.contact-form label {
  font-family: "Helvetica", sans-serif;
  color: #FFFFFF;
  margin-bottom: 11px;
}

.contact-form textarea {
  font-family: "Helvetica", sans-serif;
  
  background-color: #e3e7e8;
  border: 2px solid #D6D9DC;
  border-radius: 3px;
  width: 100%;
  padding: 7px;
  font-size: 16px;
  
  min-height: 250px;
  margin-bottom: 10px;
  resize: none;
}

.contact-form button {
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #7b4a9e;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer; 
  height: 40px;
  width: 180px;  
  margin: 0 auto;
 }
 
 .contact-form button:hover {
   background-color: #9acb93;
 }
 
 .contact-form button:active {
   background-color: #e7d254;
 }
 
 .email-flat {
  display: block;
  top: 50%;
  left: 50%;
  text-align: center;
 }