body {
  margin: 0;
  font-family: 'Libre Baskerville', sans-serif;
  background: url("pics/landing.webp") center/cover no-repeat;
  background-attachment: fixed;
  height: 100vh;
  position: relative;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-header {
  padding: 2rem;
  text-align: center;
  z-index: 1;
}

.hero-header h1 {
  font-size: 2rem;
  color: white;
  margin: 0;
}

.text {
  font-size: 1.2rem;
  color: white;
  z-index: 1;
  margin-bottom: 2rem;	
}

.hero-main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -5rem;
  z-index: 1;
}

.description-box {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-style: solid;
  border-width: 3px;
  border-color: #141414;
  border-radius: 15px;
  padding: 1.5rem;
  max-width: 800px;
  width: 90%;
  text-align: left;
  margin: 2rem;
}

.description-box p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .hero-header h1 {
    font-size: 2rem;
  }

  .description-box {
    padding: 1rem;
    font-size: 1rem;
  }
}
