* {
	box-sizing: border-box;
}
body {
	font-family: verdana;
	font-size:90%;
}
#wrapper {
	max-width: 1020px;
	margin: 0 auto;
	background-color: rgb(207, 139, 40, 0.1);
	padding:1%;
	overflow:auto;
}
header {
	background-color: rgba(255, 255, 0, 0.5);
	height: 200px;
	width: 100%;
	float:left;
}
header img {
	display: block;
	margin: auto;
	max-width: 100%;
}
nav {
	background-color: rgba(255, 255, 0, 0.5);
	width:100%;
	margin-top: 10px;
	float:left;
}
nav ul{
	list-style-type: none;
	margin: 0;
	padding:0;
}
nav ul li{
	display:inline-block;
}
nav ul li a{
	text-decoration: none;
	color:black;
	display:inline-block;
	text-align: center;
	padding: 20px 16px
}
nav ul li a:hover{
	background: rgb(173, 58, 71, 0.6);
}
main {
	background-color: rgb(207, 139, 40);
	min-height: 630px;
	width:100%;
	margin: 1% 0;
	padding:1%;
	float:left;
}
aside {
	background-color: rgb(68, 117, 176, 0.1);
	width: 20%;
	float: left;
}
main aside {
	min-height: 630px;
}
main aside p{
	padding: 3%;
}
article {
	background-color: rgb(68, 117, 176);
	width: 79%;
	float: left;
}
main article{
	min-height: 630px;
	margin:0 0 0 1%;
}
main article p,h2,h3{
	padding:0 2%;
	margin-left:1%;
}
footer {
	background-color: rgb(207, 139, 40);
	height:150px;
	width:100%;
	padding:1%;
	float: left;
}
footer aside {
	height:100%;
}
footer aside p{
	padding-top: 70px;
}
footer article {
	height:100%;
	margin:0 0 0 1%;
}
footer article ul{
		list-style-type: none;
		padding:0 3%;
}
footer article a{
	text-decoration: none;
	color: black;
}
footer article a:hover{
	color: rgb(173, 58, 71);
}
footer article h3{
	margin:0;
	padding:0 3%;
}
.robot{
	width:100%;
	height:auto;
	opacity:0.6;
}
.highlight{
	background-color: rgb(68, 117, 176, 0.5);
}
.gallery {
	margin: 5px;
	border: 1px solid #ccc;
	float: left;
	width: 180px;
  }
  
  .gallery:hover {
	border: 1px solid #777;
  }
  
  .gallery img {
	width: 100%;
	height: auto;
  }
  
  .desc {
	padding: 15px;
	text-align: center;
  }

  .hero-image {
	/* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/hero-image.jpeg");
  
	/* Set a specific height */
	min-height: 300px;
  
	/* Position and center the image to scale nicely on all screens */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
  }
  
  /* Place text in the middle of the image */
  .hero-text {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
  }

  .hero-text button {
	border: none;
	outline: 0;
	display: inline-block;
	padding: 10px 25px;
	color: black;
	background-color: #ddd;
	text-align: center;
	cursor: pointer;
  }
  
  .hero-text button:hover {
	background-color: #555;
	color: white;
  }

  table, th, td {
	border:1px solid black;
	font-size: 12px;
  }