@charset "UTF-8";
/* CSS Document */
html{
	background-color:black;
}

body{
	color:#63e259;
		
}
.fades{
	opacity:0;
	animation:fadeIn 15s forwards
}

@keyframes fadeIn{
	to{
		opacity:1;
	}
}

a img{
	width:100%;
}
