body {
  background-color: black;
  margin: 0;
  font-family: Helvetica, sans-serif;
  color: white;
  font-size: 1.2em;
}

p, ul {
  line-height: 1.5rem;
}

#hero {
  background-image: linear-gradient(to bottom, rgba(255,0,0,0), rgba(0,0,0,1)), url(media/andoria.jpg) ;
  background-size: cover;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero.actTwo {
  background-image: linear-gradient(to bottom, rgba(255,0,0,0), rgba(0,0,0,1)), url(media/shadeplains.jpg);
  background-size: cover;
  background-position: 50%;
}

#hero h1 {
  font-weight: 100;
  font-size: 3rem;
}

#hero a {
  color: white;
}

#hero p {
  text-align: center;
}

#content section {
  padding: 0 2rem;
  margin-bottom: 2rem;
}

.exposition { 
  font-style: italic;
  margin: 1rem 1rem;
}

.imgLink {
  text-align: center;
}

.imgLink img {
  max-width: 75%;
}

.quote {
  font-style: italic;
  padding: 20px 0;
}

@media screen and (min-width: 1200px) {
  #content {
    margin: 0 15rem;
  }
}

@media screen and (max-width: 600px) {
  .imgLink img {
    max-width: 100%;
  }
}