/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

nav ul {
  list-style-type:none;
  padding-left:0;
  display:flex;
  flex-wrap:wrap;
}
nav ul li {
  padding-right:10px;
}

body {
text-align:center;
font-family:verdana;
font-size:10pt;
color:#000000;

background: url(./starbg.gif) repeat center center fixed;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
		 -o-background-size: cover;
			background-size: 375px 375px;
			
	max-width: 95%;
}

a:link, a:visited {
text-decoration:underline;
color:#000000;
}

a:active, a:hover {
text-decoration:underline;
color:rgb(210, 30, 67);
}

#layout {
margin:auto;
width:1500px;
text-align:left;
padding: 10px 20px;
background: rgba(206, 205, 255, .69)
}

#container {
float:left;
width:1500px;
margin: 10px 0px;
padding: 4px 2px 4px 2px;
}

#header {
background: rgb(206, 205, 255);
text-align:center;

}

#header img {
margin:auto;
}

#leftcontainer {
float:left;
width:1500px;

}

#content {
float:right;
width:1250px;
min-height:890px;
padding:8px 12px 8px 0px;
margin: 0px 6px 0px;
background: rgb(206, 205, 255);
}

#content > p, h1, h2, h3, h4, h5, h6{
 margin: 6px 12px; 
}

#leftmenu1, #leftmenu2, #leftmenu3 {
float:left;
width:200px;
padding:3px 6px;
margin: 6px 0px;
background: rgba(206, 205, 255, .69);

}


#footer {
clear:both;
padding:3px;
background: rgba(206, 205, 255, .69);

}

#leftmenu1 ul, #leftmenu2 ul, #leftmenu3 ul {
list-style-type:none;
padding:0 5px;
margin:0;
}

#buttonslol {
 list-style-type: none; 
}




