* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  text-align: center;
}
header {
  background-color: #333;
  color: white;
  padding: 20px;
  font-size: 24px;
}
.intro {
  padding: 50px;
  width: 100%;
  height: 150vh;
  margin: auto;
  background: url("/images/hero.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
}
.intro h1 {
  font-size: 50px;
  color: #f6f6f6;
  width: 100%;
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro p {
  font-size: 28px;
  color: #d3d3d3;
}
.explore-button {
  padding: 15px 25px;
  background-color: #f6ab26;
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
}
.explore-button:hover {
  background-color: #b37c1c;
}
