/* index.html styles */

html, body {
  background: url("../assets/background.jpg") center center fixed;
  background-size: cover;
}

.main-content p {
  margin-bottom: 20px;
  font-size: 30px;
}

/* Hero title on homepage */
.hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem 1rem;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--color-dark-blue);
  margin: 0;
  line-height: 0.85;
  text-align: center;
  letter-spacing: -1px;
  /* responsive size: from 48px to 140px depending on viewport */
  font-size: clamp(48px, 12vw, 140px);
  text-shadow: 0 2px 0 rgba(0,0,0,0.03);
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(36px, 10vw, 64px); letter-spacing: 0; }
}