:root {
  --steps-rem: calc(7px + 0.4vw + 0.1vh);
}

#steps {
  height: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  box-sizing: content-box;
  overflow-y: hidden;
}

.background-text {
  position: absolute;
  top: 5%;
  line-height: calc(var(--steps-rem) * 13.5);
  font-size: calc(var(--steps-rem) * 13);
  color: var(--clr-ylw-2);
  opacity: 0;
}

.message {
  padding: 5rem 2% 1%;
  position: relative;
  color: var(--clr-ylw-1);
  font-size: 2.2em;
  width: 85%;
  opacity: 0;
  flex: 1;
}

.deck {
  position: relative;
  margin-bottom: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  width: 100%;
}

.step {
  position: relative;
  padding: 1%;
  margin: 0 3% 2%;
  height: calc(var(--steps-rem) * 22);
  box-shadow: 0 0px 5px var(--clr-ylw-1);
  background: var(--clr-blu-1);
  box-sizing: content-box;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  flex: 0 0 calc(var(--steps-rem) * 22);
  color: var(--clr-ylw-1);
  border-radius: 10px;
  transform: translateY(50%);
  opacity: 0;
}

.step p {
  font-size: 1.65rem;
  text-align: center;
}

.step i {
  font-size: calc(var(--steps-rem) * 7);
  margin-bottom: 4%;
}

/* @media (max-width: 800px) {
  .step {
    flex: 0 0 280px;
    height: 280px;
  }
  .step p {
    font-size: 2.5rem;
    text-align: center;
  }

  .step i {
    font-size: 12rem;
    margin-bottom: 4%;
  }
} */

#steps .arrow-text {
  top: 0;
  margin-bottom: 1%;
  width: 100%;
  align-items: flex-start;
}

#steps .down-arrow {
  position: relative;
  top: unset;
  opacity: 0;
  min-height: 150px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  flex: 1;
}

@media (max-width: 800px) {
  .message {
    margin-bottom: 3rem;
  }
  .step {
    height: calc(var(--steps-rem) * 25);
    flex: 0 0 70vw;
    max-width: 400px;
  }
  .message {
    text-align: center;
  }
}