body {
  background-color: #9f9f9f;
  margin: 0;
  padding: 0em 5em 0em 5em;
  font-family: sans-serif;
  position: relative;
}


nav li {
  float: left;
  margin-left: 2rem;
  padding: 0.3em 0.75em;
  list-style: none;
  border-bottom: 1px solid #040404;
}

nav a, footer a {
  color: #afafaf;
  text-decoration: none;
}

nav a:hover, footer a {
    color: #afafaf;
}

header, footer {
  margin: auto 1fr auto;
  padding: 0em 1em 0 1em;

  min-width: 49rem;

  background-color: #3f3f3f;
  color: #afafaf;
  border-bottom: 2px solid #111;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  min-height: 3rem;
  width: 100%;
}


footer p a.last {
  float: right;
  margin-right: 5rem;
}


.main {
  margin: 0;
  padding: 0em 1em 0 1em;
  min-height: 100vh;
  min-height: 100dvh;

  justify-items: center;
  display: grid;
  grid-template-rows:
    auto
    1fr
    auto;

  background-color: #ccc;
  border: 1px solid #limegreen;

}
section {
  padding: 3rem;
  height: 100vh;
}
section:nth-child(even) {
  background:#ddd;
  color: #323232;
}
section:nth-child(odd) {
  background:#333;
  color: #cecece;
}
section:nth-child(even) a{
  color: #323232
}
section:nth-child(odd) a{
  color: #cecece
}
@media (width >980px) {
  section {
    max-width: 45rem;
  }
 section:nth-child(odd){
   border-bottom:3px solid white;
 }
}
.picture {
  max-width: 15rem;
  position: relative;
  margin: 1rem;
  margin-top: -2rem;
  float: right;
}
.picture img {
  object-fit: cover;
  min-width: 15rem;
  max-width: 15rem;
  min-height: 15rem;
  max-height: 15rem;
  border-radius: 50%;
  border: 3px solid #afafaf
}

blockquote {
    position: relative;
    max-width: 20rem;
    /* background: #ddd; */
}

blockquote:before {
  position: absolute;
  content: open-quote;
  font-size: 4em;
  margin-left: -2rem;
  margin-top: -2.5rem;
}
blockquote:after {
  position: absolute;
  content: close-quote;
  font-size: 4rem;
  bottom: 0;
  right: 0;
  margin-right: 0rem;
  margin-bottom: -3.5rem;
}

