body {
	font-family : "Fira Code", sans-serif;
	background-color: #1c1c1c;
	color: white;
	text-align: center; 
	padding-top: 1%; 
	padding-left: 160px; 
	padding-right: 160px; 
}
h1 {
	font-size: 50px;
}
article {
	display: block; 
	text-align: left; 
	width: 750px; 
	margin: 0 auto;
}
a {
	color: #5dade2; 
	text-decoration: none;
}
a:hover {
	color: #376996; 
	text-decoration: none;
}
@keyframes display {
	0% {opacity: 0; margin-left:-100px;}
	100% {opacity: 1; margin-left:0px;}
}
img {
	width: 50%;
	animation-name: display;
	animation-duration: 1.5s;
}
h1 {
	animation-name: display;
	animation-duration: 2.5s;
}
p {
	width: 750px;
	animation-name: display;
	animation-duration: 3.5s;
}
