* {
	box-sizing: border-box;
}

#upper {
  background-color: #E8E8E8;
  background-size: cover;
  color: #818181;
  font-style:italic;
  line-height:15px;
  text-align:center;
  display:block;
  margin:0;
  padding-top:5pt;
  padding-bottom:5pt;
  grid-area: 1/1/1/9;
  position: relative;
  z-index: 9;
}

body {
  margin:0;
  background-color: #FFF6D9;
}

header {   /* This is where I would like the drop-shadow thing */
  background-color: #F2F2F2;
  display:block;
  grid-area: 2/9/3/1;
  height: 210px;
	background-image: url(images/birdsbudgieslogo.png);
	background-size: 900px;
	background-repeat: no-repeat;
	background-position: center;
  box-shadow:  0px 0px 15px 0px rgba(0, 0, 0, 0.150);
  position: relative;
  z-index: 10;
}

nav {
  font-family: 'vag-rundschrift-d';
	position: sticky;
	top: 0;
  background-color: #E8E8E8;
	grid-area: 3/2/3/8;
  z-index:9;
  font-size:15pt;
  font-weight:light;
}

nav a {
	text-decoration: none;
	color: #C88A3D;
	padding: 1rem 0rem;
	display: block;
	text-align: center;
}

nav ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	display:flex;
	flex-flow: row nowrap;
}

nav ul li {
	width: 100%;
}

nav a:hover {
  color: #fdae4d;
  text-decoration-line:underline;
  transition: 0.3s;
}

main section {
	float: left;
	width: 33%;
	padding: 25px;
  margin-top:50px;
  margin-bottom:50px;
  text-align:center;
  font-family: acumin-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 15pt;
  font-style:italic;
  line-height: 1pt;
}

footer section {
  float: left;
	width: 33%;
	padding-right: 1em;
}

#navbar {
  font-weight: bold;
	position: sticky;
	top: 0;
  background-color: #E8E8E8;
	grid-area: 3/1/3/9;
  box-shadow:  0px 0px 15px 0px rgba(0, 0, 0, 0.150);
  z-index: 8;
}

#wrapper {
  display:grid;
	grid-auto-rows: minmax(0px, auto);
	grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
}

#footbar {
  grid-area: 5/1/6/9;
  box-shadow:  0px 0px 15px 0px rgba(0, 0, 0, 0.150);
  z-index: 10;
  background-color: #F2F2F2;
}

#boxone {
  background-image: url(images/Cocketiels.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  box-shadow:  0px 0px 15px 0px rgba(0, 0, 0, 0.25);
  display: block;
  width: 250px;
  height: 250px;
  padding: 5px;
  background-color: #F2F2F2;
  border-radius: 25px;
  transition:1s;
}

#boxone:hover{
  background-size: 110%;
}

#boxtwo {
  background-image: url(images/Cage.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  box-shadow:  0px 0px 15px 0px rgba(0, 0, 0, 0.25);
  display: block;
  width: 250px;
  height: 250px;
  padding: 5px;
  background-color: #F2F2F2;
  border-radius: 25px;
  transition:1s;
}

#boxtwo:hover{
  background-size: 110%;
}

#boxthree {
  background-image: url(images/Food.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  box-shadow:  0px 0px 15px 0px rgba(0, 0, 0, 0.25);
  display: block;
  width: 250px;
  height: 250px;
  padding: 5px;
  background-color: #F2F2F2;
  border-radius: 25px;
  transition:1s;
}

#boxthree:hover{
  background-size: 110%;
}

main {
	grid-area: 4/2/4/8;
  background-color: #ffffff;
  padding: 25px 50px 50px 50px;
  box-shadow:  0px 0px 25px 0px rgba(0, 0, 0, 0.150);
  position: relative;
  z-index: 7;
  line-height: 25px;

}

h2 {
  font-family: acumin-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
  text-align:center;
  font-size:40pt;
  margin:10px;
  padding:25px;
}

h3 {
  text-align: center;
  font-family: acumin-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 25pt;
}

hr {
  margin:25px;
  border-width:3px;
  border-radius:3px;
  border-color:#E8E8E8;
  border-style:solid;
}

footer {
  background-color: #F2F2F2;
	grid-area: 5/2/6/8;
  position: relative;
  z-index: 10;
  padding:10px;
	text-decoration: none;
  font-style:italic;
  text-align:center;
  font-size:15px;
}

footer a {
  text-decoration: none;
  color:black;
  font-weight: bold;
  line-height:30px;
}
