html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: sans-serif;
  /* background: url('./bg.jpg') no-repeat center center / cover; */
  color: white;
}

.overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.content {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}

.content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 16px;
  line-height: 24px;
  font-style: italic;
  max-width: 500px;
  margin: 10px auto 100px;
}

.section-output {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 8px;
  z-index: 1;
}

.section-output h2 {
  margin-top: 0;
}

footer {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 12px;
  margin-top: 50px;
  padding-bottom: 20px;
  color: #111;
  z-index: 1;
}

.hero {
  position: relative;
  width: 100%;
  height: 50vh;
  max-height: 300px;
  background: url('./bg.jpg') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  margin: 0;
}

.hero-content span {
  font-size: 18px;
  font-style: italic;
  display: block;
  margin-top: 8px;
}

.intro-section {
  background: white;
  color: black;
  padding: 30px 20px;
  text-align: center;
}

.intro-section .subtitle {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 600px) {

  .hero-content h1 {
    font-size: 30px;
  }

  .subtitle {
    /* text-align: left; */
  }

  #menu {
     text-align: left;
  }
}