.hero {
  display: flex;
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  margin-top: 1rem; 
}

.hero-img {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    width: 100%;
    height: auto;
}


.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    opacity: 0.25;
    z-index: -1;
}

.hero-text {
    display: flex; 
    flex-direction: column; 
    margin-top: 2rem;
    font-size: 1.25rem;
}