.home_hero {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.home_hero h1 {
  position: absolute;
  color: var(--White_main);
  font-family: Bebas;
  font-size: 6rem;
  text-shadow: 1px 1px var(--Navy_main);
  margin-left: 2rem;
}
.home_hero img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 1050px) {
  .home_hero h1 {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 800px) {
  .home_hero h1 {
    font-size: 3.5rem;
  }
}

@media only screen and (max-width: 600px) {
  .home_hero h1 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 400px) {
  .home_hero h1 {
    font-size: 1.5rem;
  }
}
