*{
	padding:0;
	margin:0;
	box-sizing: border-box;
	font-family: Arial,Sans-serif;
}
.Head{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1%;
	padding-left: 10%;
	padding-right: 10%;
	padding-bottom: 1%;
	background-color: gray;
}
.Head ul li{
	list-style-type: none;
	display: inline-block;
	margin-top: 5%;
	margin-bottom: 5%;
}
.Head img{
	width: 20%;
	height: 20%;
}
.Head a{
	color: white;
	font-size: 100%;
	margin-left: 5px;
	padding: 1px;
	text-decoration: none;
	border: 3px black solid;
	border-radius: 5px;
	border-color: darkgray;
}
.Head a:visited{
	color: white;
}
.Head a:link{
	color: white;
	font-size: 150%;
	border-color: darkgray;
	transition-duration: 1s;
}
.Head a:hover{
	font-size: 175%;
	border-color: black;
	transition-duration: 1s;
	color: white;
}
.footer{
	left: 0;
	bottom: 0;
	width: 100%;
	height: 5%;
	background-color: gray;
	
	color: white;
	text-align: right;
	padding-top: 2%;
	padding-bottom: 2%;
	padding-right:2%;
}