@charset "utf-8";
/* CSS Document */
body {
	background-image: url("Images/pexels-quang-nguyen-vinh-2159074.jpg");
	background-repeat: no-repeat;
  	background-attachment: fixed;
  	background-size: cover;
}
header {
	background-color: dimgray;
	margin: 0 auto;
	width: 90%;
	height: 80px;
	margin-bottom: 20px;
	margin-top: 10px;
	font-family: "Eras ITC Demi", "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
}
main {
	background-color: lightgray;
	margin: 0 auto;
	width: 90%;
	height: auto;
	margin-top: 20px;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	text-align: center;
}
footer {
	text-align: center;
	margin: 0 auto;
	width: 90%;
	height: auto;
	background-color: dimgray;
	margin-bottom: 10px;
	margin-top: 20px;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}
.text-area-header{
	width: 25%;
	height: 75px;
	text-align: left;
	top: 0px;
	float: left;
	
}
.logo{
	width: 400px;
	height: 70px;
	float:left;
	margin: 5px;
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow:auto;
	width: 410px;
	float: right
}

/* Style the links inside the navigation bar */
.topnav a {
  float: right;
  display:block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: saddlebrown;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}
/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 800px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: left;
    display: flex;
  }
	.topnav {
  	background-color: #333;
  	overflow:auto;
	width: 50%;
	height: auto;
	float: right;
	}
	.icon {
		height: 7%;
	}
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 800px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
	.logo {
		width: 200%;
		}
}


.image-left {
	width: 10%;
	height: auto;
	float: left;
}
.footer-text{
	width: 64%;
	height: 100px;
	text-align: center;
	float: left;
	color: white;
}
.image-right {
	width: 10%;
	height: 100px;
	background-image: url("Images/header background.png");
	float: left;
}
/* Style all font awesome icons */
.fa {
  	padding: 41px;
  	font-size: 30px;
  	width: 26px;
  	text-align: right;
  	text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
  background: #3B5998;
  color: white;
}

/* Twitter */
.fa-twitter {
  background: #55ACEE;
  color: white;
}
/* Style inputs, select elements and textareas */
input[type=text], select, textarea{
  width: 100%;
  padding: 12px;
  border: 1px solid saddlebrown;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}

/* Style the label to display next to the inputs */
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

/* Style the submit button */
input[type=submit] {
  background-color: saddlebrown;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

/* Style the container */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

/* Floating column for labels: 25% width */
.col-25 {
  float: left;
	text-align: center;
  width: 25%;
  margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* 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) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}