html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.hero {
  width: 100vw;
  height: 100vh;
  background-image: url("/arbuz.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
}

h1 {
  margin: 0;
  color: white;
  font-size: clamp(48px, 12vw, 160px);
  font-weight: 900;
  text-align: center;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.8);
}
