body {
	width: 800px;
    font-family: helvetica;
}


.grid-container {
	display: grid;
	grid-template-areas:
		"top top top top"
		"nav main main main"
		"footer footer footer footer";
}
.grid {
	padding: 10px;
	margin: 15px;
}
.g1 {
	grid-area: top;
	font-size: 20px;
	
}

.g2 {
	grid-area: nav;
}

.g3 {
	grid-area: main;
}

.g4 {
	grid-area: footer;
}

a:hover{
font-style: italic;
font-weight: bold;
color: #fff;
text-decoration: none;
}

a:visited {
  color: black;
  text-decoration: none;
}

#header {
	display: flex;
	border: 2px solid black;
	align-items: flex-end;
	background-image: url(/gallery/photos/DSC00415_resized.png);
	background-repeat: no-repeat;
	background-position: right center;
	width: 1200px;
	height: 300px;
	color: white;
	padding: 5px 15px;
	font-size: 20px;
    
	
#sitenav {
	text-align: left;
	color: black;
	padding: 15px;
	font-size: 20px;
}

#sidebar > ul {
	list-style-type: circle; /* Remove bullets */
	padding: 5px; /* Remove padding */
	margin: 0; /* Remove margins */
	
