#scrolly2 {
  position: relative;
  background-color: black;
}

/*
      Set margin: 0 auto to center the steps.
      Set margin: % to control distance from left.
      Control step width with max-width.*/
#article2 {
  position: relative;
  padding: 0;
  max-width: 40rem;
  margin: 0 auto;
}

#sticky-thing2 {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  width: 100%;
  margin: 0 auto;
  background-color: transparent;
  z-index: 0;
  top: 0vh;
  height: 100vh;
  /* Center everything inside */
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/map_forest_types_legend.jpg");
  background-size: cover;
  background-position: center center;
}

/*Use the margin to change the distance between steps*/
.section2-step {
  margin-bottom: 50rem;
}

.section2-step:first-child {
  margin-top: -75rem;
}

.section2-step:last-child {
  margin-bottom: 0rem;
}

.section2-step p {
  padding: 5px;
}

@media only screen and (max-width: 1024px) {
  #article2 {
    margin: 0 auto;
    max-width: 50rem;
  }
  .section2-step {
    margin-bottom: 80rem;
  }
}
