.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.hero-overlay h1 {
  font-size: 72px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-style: italic;
  font-weight: 550;
  position: absolute;
  right: 20rem;
  bottom: 3rem;
}

.shooting-options {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin: 70px 0;
}

.shooting-options-title {
  text-transform: uppercase;
  margin: 30px 0;
  font-size: 52px;
  font-weight: 500;
  color: #303030;
  text-align: center;
}

.shooting-option-name {
  text-transform: uppercase;
  margin: 10px 0 0 0;
  padding: 5px 5px 5px 0;
  font-size: 32px;
  font-weight: 400;
  color: #303030;
  text-align: center;
}
.anschauen {
  color: #303030;
  font-weight: 300;
}
.anschauen-link {
  display: inline-block;
  text-decoration: none;
  color: #303030;
  transition: 0.1s ease;
}

.anschauen:hover {
  color: #FFF;
}

.shooting-option {
  width: 100%;
  text-align: center;
  margin-bottom: 80px; /* Adjust as needed */
}

.shooting-option img {
  border-radius: 0.5%;
  width: 65%;
  height: auto;
}

.shooting-option h2 {
  margin-top: 10px;
  font-size: 20px;
}


/* Media Queries for responsiveness */
@media (max-width: 1024px) {
  .shooting-options-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .shooting-options-title {
    font-size: 32px;
  }
}

