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

body {
  font-family: 'Helvetica Neue', sans-serif;
  background: url('assets/background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.centered-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(-8%); /* lift slightly above center */
}

.logo {
  height: auto;
  max-height: 150px;
  max-width: 90vw;
  margin-bottom: 30px;
}

main h1 {
  font-size: clamp(1.4rem, 5vw, 2.5rem); /* slightly smaller max and base */
  letter-spacing: 2px;
}

main p {
  font-size: clamp(0.9rem, 3vw, 1.2rem); /* proportionally smaller */
  margin-top: 10px;
  opacity: 0.85;
}