* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #000;
  color: #ccc;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  padding-top: 120px; /* keep top space for navbar */
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}

h2 {
  font-size: 1.25rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #eae8e8;
}

p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.closing {
  text-align: center;
  font-style: italic;
  margin-top: 40px;
  font-size: 1.1rem;
}

/* Decorative icons */
.star {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 6rem;
  color: #1e90ff;
  opacity: 0.7;
  z-index: 0;
}

.symbol {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 6rem;
  color: #1e90ff;
  transform: rotate(-15deg);
  font-weight: bold;
  opacity: 0.7;
  z-index: 0;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  p {
    font-size: 0.95rem;
  }
  .star,
  .symbol {
    font-size: 4rem;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  p {
    font-size: 0.9rem;
  }
  .star,
  .symbol {
    font-size: 3rem;
  }
}
/* Mobile View (≤600px) */
@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  h2 {
    font-size: 1.1rem;
    text-align: center;
  }

  p,
  .closing {
    font-size: 0.9rem;
    text-align: center;
  }

  .star,
  .symbol {
    font-size: 3rem;
  }
}
