/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Background */
body {
  background: url('kids.webp') no-repeat center center/cover;
  height: 100vh;
  font-family: 'Poppins', sans-serif;
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Black overlay with 50% opacity */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* Overlay content */
.overlay {
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 0;
  z-index: 1;
  position: relative;
}

/* Logo */
.logo {
  max-width: 180px;
  margin: 0 auto;
  display: block;
}

/* Heading */
main h1 {
  font-size: 6rem;
  font-weight: 600;
  letter-spacing: 2px;
}
main p {
  font-size: 1.5rem;
  margin-top: 20px;
}

/* Footer */
footer {
  font-size: 0.9rem;
  opacity: 0.8;
}