@charset "utf-8";
/* css stylesheet */

<style>

	
.menu {
  	height: 80px;
  	background-color: black;    /* black */
	border: 1px solid black;
	 }


 
/* horizontal nav bar */	
ul {	
	list-style-type: none;
	margin:0; /* pushes in */
	padding:0; /* pushes out */
	background-color: #000000;
	text-align: right;
	
   	}

	
li {
    display: inline-block;
    color: #d7e4c2;
	text-align: center;
	text-decoration:none;
    padding: 10px 17px;
	font-size: 16px;
	
	 }	 
a {
	text-decoration: none;
	 }	 

/* unvisited link */
a:link {
    color:#d7e4c2;
}	 

a:visited {
	color: #be1e2d; 
	 }

/* mouse over link */
a:hover {
    color: #8a8c8f;	 
	 }
	
h1{
	font-family: Athelas;
	color:black;
	font-size: 60px;
    text-align: center; 
}

h3 {
font-family: Athelas;
color:#d7e4c2;

</style>