/* 	Developer: Max Coller 
	Start Date:  04/23/2023 */
	
/* style the nav element for the full screen display */
nav {
	width: 200px;
	float: left;
	margin-right: 10px;
	margin-top: -35px;
}
	
/* style the unordered list used for the menu in the full screen display */
nav ul {
	background-color: rgb(175,175,175); 
}

/* add the :hover pseudoelement to change the color on the full screen display */
nav ul li:hover {
    background-color: rgb(148,51,62);
    border-radius: 5px;
}

/* move the h1 in the header and make it wider in the full screen */
header h1 {
	width:100%;
	margin: -5px 0px 20px -10px;
	text-align: center;
}
    
/* move the about us blue box to the right if the menu is full-screen */
section div.about_us {
	margin-left:220px;
}    
