/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* DESKTOP FIRST (default styles) */
body {
  height: 100vh;
  background: url("images/sse_holding_1920x1330.jpg") center / cover no-repeat;
}

/* Overlay */
.overlay {
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main content */
.content {
  color: #ffffff;
  text-align: center;
  max-width: 900px;
}

.content h1 {
  font-size: 4rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.small {
  font-size: 0.9rem;
  opacity: 0.75;
}

/* ---------- MOBILE OVERRIDES ---------- */
@media (max-width: 768px) {
  .content h1 {
    font-size: 2.4rem;
  }

  .content p {
    font-size: 1.1rem;
  }

  .content {
    padding: 0 20px;
  }
}
