@charset "UTF-8";
/* CSS Document */

header {
	color: white;
}

main {

	width: 600%;
	color:antiquewhite; 
	text-align:left;
	padding-left: 180px;
	font-family: 'Vidaloka', serif;
	font-size: 3.2rem;

	}

nav {
	position:fixed;
	left: 0;
	top: 0;
	width: 100%;
	overflow: hidden;
	text-align: center;
	transition: 1s background-color;
}

nav a {
	color: white;
	text-decoration:none;
	float: none;
	padding: 2%;
	margin-right: 30px;
	border-radius: 5px;
	font-size: 2rem;
	font-weight: bold;
	font-family: 'Vidaloka', serif;

}

nav a:hover, nav a:active, nav a:focus {
	color: white;
	text-decoration:underline;
	transition: 1s background-color;
	
}














