body {
	background-color:#666666;
	margin:0px;
	padding:0px;
	overflow-y:scroll;
	overflow-x:auto;
	font-family: 'Roboto', Helvetica, Tahoma, Arial;
	font-weight:400;
	color:#FFFFFF;
}
.cover{
	top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
    position: absolute;
	z-index: 5;
}
.cover > img{
	display: block;
	margin-left: auto;
  	margin-right: auto;
}
.cover > span{
	display: block;
	text-align: center;
}
.cover > span.titulo{
	font-size: 26px;
	margin-top: 10px;
}
.cover > span.bajada{
	font-size: 18px;
	margin-top: 5px;
	font-weight: 300;
}
.menu{
	top: 50%;
    right: 10%;
    transform: translateY(-50%);
	position: fixed;
	z-index: 10;
}
.menu > div > img{
	position: absolute;
	z-index: -1;
	margin-top: 9px;
}
.menu > div > a{
	color:#FFFFFF;
	text-decoration: none;
	line-height: 20px;
	font-size: 14px;
	font-weight: 300;
    padding: 10px;
	padding-left: 25px;
	display: inline-block;
}
@keyframes agrandar {
	0% {
		transform: scale(1.0);
		padding: 0px;
		margin-left: 0px;
	}
	100% {
		transform: scale(1.6);
		padding: 5px;
		margin-left: 25px;
	}
}
@keyframes achicar {
	0% {
		transform: scale(1.6);
		padding: 5px;
		margin-left: 25px;
	}
	100% {
		transform: scale(1.0);
		padding: 0px;
		margin-left: 0px;
	}
}
.agrandarElemento {
	animation: agrandar 0.2s ease forwards;
}
.achicarElemento {
	animation: achicar 0.2s ease-in-out forwards;
}
.aparecerFondo {
	position: fixed;
	z-index: 1;
	background-color:#777777;
	border-radius: 50%;
	opacity: 0;
    animation: aparecer 2s ease-in-out forwards;
}
@keyframes aparecer {
	0% {
        transform: scale(0.01, 0.01);
		opacity: 0;
	}
	50% {
        transform: scale(1.0, 1.0);
		opacity: 1;
	}
	100% {
        transform: scale(0.01, 0.01);
		opacity: 0;
	}
}
@media (max-width: 1000px) {
	.cover{
		left: 100px;
		right: auto;
		transform: translate(0%,-50%);
	}
	.menu{
		left: 380px;
		right: auto;
	}
}
@media (max-width: 650px) {
	.cover{
		top: 10%;
		left: 50%;
		transform: translate(-50%,0%);
	}
	.menu{
		bottom: 10%;
		top: auto;
		left: 50%;
		transform: translate(-50%,0%);
	}
}