@import url('fuentes.css');
body
{
	background: #222;
	color: #eee;
	font-family: arial, verdana;
	font-size: 16px;
	text-align: center;
}
header
{
	background: url(../img/logo.png) no-repeat 1em 0.5em,
				#000;
	background-size: 350px, 100%;
	color: white;
	font-family: arial, verdana;			
	margin: 0 0 1em 0;
	padding: 0.5em 0;
	text-align: left;
	width: 100%;
}
header h1
{
	margin: 0;
}
header h3
{
	margin: 0;
	font-weight: normal;
	text-shadow: rgba(255,255,255, 0.7) 3px 3px 10px;
}
hgroup
{
	margin-left: 1em;
	padding-top: 3.5em;
}
nav
{
	background: rgba(16,158,196, 0.8);
	bottom: 0;
	color: #eee;
	font-size: 1.5em;
	left: 0;
	padding: 0.5em 0;
	position: fixed;
	width: 100%;
}
nav ul
{
	list-style: none;
	padding: 0;
	margin: 0;
}
nav ul li
{
	display: inline-block;
}
nav ul li a
{
	background: #5C0372;
	border-radius: 0.5em;
	color: white;
	display: inline-block;
	margin: 0 1em 0 0;
	padding: 0.5em 1em;
	text-decoration: none;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}
nav ul li a:hover
{
	background: #fff;
	color: black;
	transform: scale(1.2) rotate(-5deg);
	-webkit-transform: scale(1.2) rotate(-5deg);
}