.content {
  min-height: 100vh;
  display: block;
}

.hero-contact {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../images/ContactMountain2.jpg");
  background-position: top;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  object-fit: cover;
  min-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-contact div {
  margin-left: 40%;
  margin-bottom: 25%;
  color: white;
  font-size: 2rem;
  animation: heroText 1s forwards 0.5s ease;
  opacity: 0;
}
.hero-contact h1 {
  margin: 0%;
}
@media only screen and (max-width: 800px) {
  .hero-contact div {
    margin-left: 0%;
    margin-bottom: 50%;
  }
}

@media only screen and (max-width: 600px) {
  .hero-contact div {
    font-size: 1.5rem;
  }
}
