* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

header h1 {
    color: white;
    margin: 0px;
    width: 200px;
    padding: 20px;
    background-repeat:no-repeat;
}

h1 a {
    color: white;
    text-decoration: none;
}

#animals {
    background-image: url(images/animal_picture.png);
    height: 200px;
    width:270px;
    background-position: center;
    background-repeat: no-repeat;
    grid-area:4/4/5/6;
    margin-left:40px;
    margin-right:40px;
    justify-content:space-evenly;
}

#wrapper {
    display:grid;
    grid-auto-rows: minmax(0px,auto);
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
}

#blackbar {
    grid-area: 1/1/1/10;
    background-color:black;
}

nav {
    background-color:dimgray;
    grid-row: 2/3;
    grid-column: 1/10;
    text-decoration: none;
    position: sticky;
    top:0;
    text-align: center;
    height:50px;
}

nav a {
    text-decoration: none;
    color: whitesmoke;
    padding: 1em;
    width: 111px;
}

nav ul {
    list-style-type: none;
    display:flex;
    flex-flow:row nowrap;
    justify-content: space-evenly;
}

nav a:hover {
    background-color: grey;
}

nav ul li a {
    width:100%;
}

body { 
    font-family: 'Times New Roman', Times, serif;
    background-attachment: fixed;
    margin:0;
}

p {
    text-align: center;
    font-family:Georgia, 'Times New Roman', Times, serif;
    grid-column:4/6
}

#aboutusthing {
    text-align:center;
    font-weight:bold;
	background-color:#666666;
	padding:10px;
    text-align:center;
    color:white;
    grid-row:2/8;
    grid-column:5/6;
}

main h2 {
	font-weight:bold;
	background-color:#666666;
	color:#ffffff;
	padding:10px;
    text-align:center;
}

main {
    grid-area: 6/2/7/8
}

footer {
    font-size:0.70em;
    font-style:italic;
    text-align:center;
    padding: 1em;
    background-color: #FFFFFF;
    grid-row: 9/10;
    grid-column: 2/8
}