*{
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.encabezado{
	width: 100%;
	height: 100px;
	background-size: cover;
	background-color: black;
	-webkit-transition: background-color .5s;
}
.navbar{
	width: 100%;
	padding: 30px;
	position: fixed;
	top: 0px;
	text-align: center;
	transition: .5s;

}
.navbar ul li{
	list-style-type: none;
	display: inline-block;
	padding: 10px 30px;
	color: white;
	font-size: 14px;
	font-family: sans-serif;
	cursor: pointer;
	border-radius: 6px;
	transition: .5s;

}

.navbar ul li:hover{
	background: green;
}

ul,ol{
	list-style: none;
}
img#logo{
	float: left;
	display: flex;
	margin-left: 35px;
	margin-right: 35px;
	margin-top: .5px;
	height: 65px;
	width: 120px;
	-webkit-transition: width .5s, height .5s, margin-right .5s, margin-top .5s;
}