body {
	font-family: Verdana, Geneva, sans-serif;
	background-color: #2d3277;
}

header {
	padding: 100px;
	background-image: url("img/site/header.jpg");
}

nav {
	padding: 10px;
	background-color: #545454
}

.siteheader {
	background-color: white;
	padding: 10px;
	float: left;
	background-color: #ffffff;
	border-style: solid;
    border-color: #545454;
}

section {
	margin: auto;
	padding: 10px;
	width: 75%;
	border-style: solid;
    border-color: #545454;
	background-color: #ffffff;
}

.artwork {
	border-style: solid;
    border-color: #545454;
}

.artwork p {
	padding-left: 10px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

footer {
	margin: auto;
	padding: 10px;
	border-style: solid;
    border-color: #545454;
	width: 75%;
	background-color: #ffffff;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #545454;
}

/* .ingredients is a class used for lists not related to main nav list */

.ingredients {
	list-style-type: square;
    margin: 10px;
    padding: 10px;
	background-color: #ffffff;
	overflow: visible;
}

.ingredients li {
	float: none;
}

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change the link color to #80ff5e (black) on hover */
li a:hover {
    background-color: #80ff5e;
	color: black;
}

.active {
    background-color: #48aaad;
}