*{
	margin: 0;
	padding: 0;
}

a{
	text-decoration: none;
	color: black;
}

body{
	background-color: orange;
	color: #3d0da5;
	font-size: 20px;
}

article, header{
	background-color: #f2e7ca;
	border: 5px solid #c6caf2;
	border-radius: 10px; 
	box-shadow: 10px 10px 5px #888888;
}

header{
	margin-left: 5%;
	margin-top: 5px;
	margin-bottom: 20px;
	text-align: center;
	width: 90%;
	height: 220px;
}

header img{
	height: 40%;
	width: 30%;
	/*margin-left: 70%;	*/
}

article{
	opacity: 1;
	transition: opacity 0.8s ease-in-out;
	-ms-transition: opacity 0.8s ease-in-out;
	-moz-transition: opacity 0.8s ease-in-out;
	-o-transition: opacity 0.8s ease-in-out;
	-webkit-transition: opacity 0.8s ease-in-out;

	display: inline-block;
	margin-left: 10%;
	margin-bottom: 30px;
	float: left;
	height: 200px;
	text-align: center;
	width: 200px;	
}

article img{
	height: 190px;
	width: 190px;
}

section{
	text-align: center;
	width: 80%;
	margin: 15%;
}

article:hover{
	background-color: purple;
	height: 200px;
	width: 200px;
	opacity: 0.5;
	transition: opacity 0.8s ease-in-out;
	-ms-transition: opacity 0.8s ease-in-out;
	-moz-transition: opacity 0.8s ease-in-out;
	-o-transition: opacity 0.8s ease-in-out;
	-webkit-transition: opacity 0.8s ease-in-out;
}

footer{
  	float: left;
	background-color: #f2e7cb;
	border: 5px solid #c3caf2;
	bottom: 0;
	margin-bottom: 0;
	/*position: fixed;*/
	height: 150px;
	text-align: center;
	width: 90%;
	margin-left: 5%;
	border-radius: 10px;
}

footer img{
	height: 100px; 
	width: 100px;
	margin-left: 90%;
	position: fixed;
	bottom: 5px;
	margin-bottom: 0px;
}
