/* Estilo animación rectángulo */
/*
@keyframes tipsy {
	0 {
		transform: translateX(-50%) translateY(-50%) rotate(0deg);
	}
	100% {
		transform: translateX(-50%) translateY(-50%) rotate(360deg);
	}
}
*/
body {
	font-family: helvetica, arial, sans-serif;
	background-color: black;
}

a {
	color: #fffbf1;
	text-shadow: 0 20px 25px #2e2e31, 0 40px 60px #2e2e31;
	font-size: 80px;
	font-weight: bold;
	text-decoration: none;
	letter-spacing: -3px;
	margin: 0;
	position: absolute;
	top: 20%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	/*opacity: 0.8;*/
}
/*
a:before,
a:after {
	content: '';
	padding: .9em .4em;
	position: absolute;
	left: 50%;
	width: 100%;
	top: 50%;
	display: block;
	border: 15px solid red;
	transform: translateX(-50%) translateY(-50%) rotate(0deg);
	animation: 10s infinite alternate ease-in-out tipsy;
}

a:before {
	border-color: red red rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
	z-index: -1;
}

a:after {
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) red red;
	box-shadow: 25px 25px 25px rgba(46, 46, 49, .8);
}
*/
/* Estilo botones animados */

.button {
	border-radius: 4px;
	background-color: red;
	border: none;
	color: #FFFFFF;
	text-align: center;
	font-size: 28px;
	padding: 20px;
	width: 250px;
	transition: all 0.5s;
	cursor: pointer;
	margin: 5px;
}

.button span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
}

.button span:after {
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
}

.button:hover span {
	padding-right: 25px;
}

.button:hover span:after {
	opacity: 1;
	right: 0;
}

.boton1 {
	position: absolute;
	left: 80%;
	top: 40%;
}

.boton2 {
	position: absolute;
	left: 80%;
	top: 50%;
}

/* Estilo icono Facebook */
.sin-estilo {
	all: unset;
	/*box-shadow: none;
	border-style: none;
	border-color: blue;
	border-width: medium;
	transform: none;
	animation: none;
	text-shadow: none;
	padding: none;
	text-decoration: none;*/
	position: absolute;
	left: 80%;
	top: 60%;
}

.sin-estilo:before,
.sin-estilo:after {
	all: unset;
}

.sin-estilo:hover {
	cursor:pointer;
	cursor: hand;
}

/* Estilo autor */
p {
	position: absolute;
	top: 95%;
	text-align: center;
	color: white;
	font-family: Arial;
	font-size: small;
	width: 100%;
	display: block;
	/*text-align: justify;
	margin-left: 25px;
	display: inline;*/
}

/* Estilo adaptados a pantallas pequeñas */
@media screen and (max-width:480px){
	a {
		font-size: 30px;
		top: 30%;
		left: 35%;
	}
	a:before,
	a:after {
		border: 5px solid red;
	}

	.button {
		font-size: 20px;
		padding: 5px;
		width: 140px;
	}

	.boton1 {
		left: 27%;
		top: 60%;
	}

	.boton2 {
		left: 27%;
		top: 70%;
	}

	p {
		top: 90%;
		margin: 0;
		font-size: 12px;
	}
}