#scrolly1 {
  position: relative;
  background-color: #000000;
}

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

#sticky-thing1 {
  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/sardine-creek-burn-santiam.jpg");
  background-size: cover;
  background-position: center center;
}

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

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

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

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

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