.splash {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 12rem 4rem;
}


.splash h1 {
  font-family: 'Volkhov', serif;
  font-size: 60px;
  line-height: 72px;
  letter-spacing: -4%;
  font-weight: 700;
  margin: 0;
  color: var(--dark-gray);
}

.splash h2 {
  margin: 0;
  color: var(--gray);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  width: 50%;
}

.splash h4 {
  margin: 0;
  color: var(--orange);
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* tablets */

  .splash {
    margin: 14rem 2rem 2rem 2rem;
    gap: 1rem;
  }

  .splash h1 {
    font-size: 3rem;
    line-height: 3.5rem;
  }

  .splash h2 {
    width: 70%;
  }

  .splash h4 {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 767px) {

  /* phones */

  .splash {
    margin: 14rem 2rem 2rem 2rem;
    gap: .5rem;
  }

  .splash h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .splash h2 {
    width: 100%;
  }

  .splash h4 {
    font-size: 1.2rem;
  }
}