body {
  background: blanchedalmond;
  font-family: Georgia, 'Times New Roman', Times, serif;
  margin: 0px;
}

header {
  position: sticky;
  top: 0px;
  text-align: center;
  color: white;
  background-color: peru;
  padding: 16px;
  margin-bottom: 16px;
}

footer {
  position: fixed;
  bottom: 0px;
  width: 100%;
  color: white;
  background-color: peru;
  text-align: center;
  padding: 4px;
  margin-top: 16px;
}

main {
  padding-bottom: 80px;
}

header h1 {
  margin: 0;
}

#yearbook {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.yearbook-entry {
  text-align: center;
  margin: 8px;
  height: 400px;
  width: 350px;
  border-radius: 8px;
  background-color: burlywood;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
  border: 8px solid peru;
}

.yearbook-entry img {
  height: 50%;
  width: 100%;
  border-bottom: 4px solid peru;
}

@media screen and (width < 500px) {
  .yearbook-entry {
    background-color: peru;
    color: white;
  }
}