/*Aparecerá un botón de la derecha de la pantalla con el
texto "Pulsar"

hover: Opacity
Active: borde más gruesop
		letra un poco más grande
		boton aumente un poco de tamaño
Visited:cambio de color boton
*/

#boton{
	position:relative;
	top:400px;
	left:50%;
	animation-name:animaBoton;
	animation-duration:5s;
	width:400px;
	height:200px;
	font-family:verdana;
	font-size:50px;
	color:red;
	background-color:#cc99ff;
	border-radius:25px;
	border:5px solid black;
	text-align:center;
	z-index:1;
}

@keyframes animaBoton{
	from{
		margin-left:100%;
/*		margin-top:400px;*/
	}
	to{
		margin-left:0%;
/*		margin-top:400px;*/
	}
}

#boton:hover{
	opacity:0.25;
}
#boton:active{
		border:15px solid black;
		font-size:75px;
		width:450px;
		height:250px;
}

a:visited #button{
		background-color:#ccff99;
		border:5px solid black;
}