* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body, html {
  height: 100%;
}

.container {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 2rem;
}

.overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.overlay h2 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.overlay p {
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.button {
  background-color: white;
  color: black;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
}

.button:hover {
  background-color: #ddd;
}

.home-container {
  background-color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home-container h1 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 2rem;
}

.secondary {
  background-color: #f0f0f0;
  color: #333;
  margin-left: 1rem;
}

