* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
}

.header {
  text-align: center;
  padding: 20px;
  background-color: #f8f9fa; /* Light background for the header */
}

.divider {
  width: 300px; /* Width of the line */
  height: 7px; /* Height of the line */
  background-color: #007bff; /* Color of the line */
  border: none; /* Remove default border */
  margin: 10px auto; /* Center the line */
}

.hero {
  background-image: url("https://source.unsplash.com/1600x900/?nature,water");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.welcome-message {
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  padding: 20px;
  border-radius: 10px;
}

h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.button {
  text-decoration: none;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #0056b3;
}

.about {
  padding: 50px;
  text-align: center;
  background-color: #f8f9fa;
}

.about h2 {
  margin-bottom: 20px;
}

.about p {
  font-size: 1.1em;
  color: #333;
}
