body {
	margin: 0px;
	font-family: Arial;
}
p {
	padding: 5px;
}
.header {
	text-align: center;
	padding: 15px;
	color: rgb(92,93,76);
	font-family: Metro;
}
.subhead {
	font-size: 18px;
}
.navbar {
	display: flex;
	background-color: rgb(92,93,76);
	font-family: Metro;
}
.navbar a {
	color: white;
	padding: 14px 20px;
	text-decoration: none;
	text-align: center;
	font-family: Metro;
}
.navbar a:hover {
	background-color: #ddd;
	color: black;
}
.row {  
    display: flex;
    flex-wrap: wrap;
}
.rowpad {
	flex: 20%;
	padding: 20px;
}
.img1 { 
	width: 403px;
	height: 302px;
}
.img2 { 
	width: 203px;
	height: 302px;
}
.img3 { 
	width: 302px;
	height: 302px;
}
.img4 { 
	width: 260px;
	height: 302px;
}
.main {
	flex: 100%;
	padding: 10px 10px 10px 30px;
	font-size: 18px;
}
.footer {
	height: 50px;
	width: 100%;
	background-color: rgb(92,93,76);
	text-align: center;
	color: white;
	position: fixed;
	bottom: 0;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
    .row, .navbar {   
        flex-direction: column;
    }
}