.masthead {
  background-size: cover;
  min-height: 100vh;
  position: relative;
}

.masthead-image {
  background-image: url("../images/lady_justice_low_res.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.color-overlay {
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  height: 100%;
  width: 100%;
}

.masthead-text {
  color: var(--masthead-text-color);
  max-width: 992px;
  padding-top: 8rem;
}

.masthead-text h1 {
  font-family: 'Antonio', Tahoma;
  font-size: 7rem;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 4px 4px 6px black;
  margin-bottom: 1.5rem;
  line-height: 8rem;
}

.masthead-text p {
  font-family: 'PTSerif', Tahoma;
  font-size: 3.2rem;
  text-shadow: 3px 3px 4px black;
}

.arrow-masthead {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  padding-bottom: 5px;
  color: var(--masthead-arrow-color);
  font-size: 2.5em;
  text-shadow: 2px 2px 4px black;
}

@media (max-width: 768px) {
  .masthead-text h1 {
    font-size: 5.5rem;
  }

  .masthead-text p {
    font-size: 2.2rem;
  }
}

@media (max-width: 400px) {
  .masthead-text h1 {
    font-size: 4rem;
    line-height: 5rem;
  }

  .masthead-text p {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}