/*CSS FILE*/
body {
	background-color: coral;
	text-align:center;
}

ul {
	list-style-type: none;
	text-align:center;
	font-size:2vw;
	display:block;
}

li {
	display:inline-block;
	background-color: white;
	border-right:2px solid tomato;
	padding:10px;
	margin-left:0px;
	font-family: arial;
}

li:hover {
	background-color:tomato;
	
}

a{
	text-decoration:none
}

h1 {
	font-size:19vw;
	font-weight: bold;
	
}

p.ascii {
	font-family:"Courier New", Courier, "Lucida Sands Typewriter", "Lucida Typewriter", monospace;
	font-size: 1.2vw;

}

p {
	display:block;

}

img {
	width:83%;
}

.current {
	background-color:tomato;

}