@charset "utf-8";

 html {
	 background-image: url(star.png);
	 color: white;
	 font-family: copperplate, verdana, sans-serif;
	 text-align: center;
	 padding-top: 50px;
	 padding-bottom: 50px;
	 height: 100%;
	 width: 60%;
	 display: table;
	 margin: auto;
 }
 
 body {
	 line-height: 2em;
	 background-color: rgba(0, 0, 0, .3);
	 padding-top: 50px;
	 padding-bottom: 50px;
	 display: table-cell;
	 vertical-align: center;
 }
 
 aside {
	 
 }
 
 /* navigation */
 
 nav {
	 width: 45%;
	 border: 1px solid rgb(13, 4, 30);
	 background: rgb(45, 24, 84);
	 text-align: center;
	 display: inline-block;
 }
 
 nav ul a {
	 text-decoration: none;
	 color: white;
 }
 
 li {
	 display: inline;
	 border-right: 1px solid rgb(13, 4, 30);
	 padding-right: 20px;
	 padding-left: 15px;
 }
 
 li:last-child {
	 border-right: none;
 }

 /* headings */
 
 h1 {
	 font-size: 45px;
	 padding-bottom: 20px;
 }
 
 h2 {
	 font-size: 30px;
	 padding-top: 20px;
 }
 
 h3 {
	 font-size: 20px;
 }