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

html, body {
  height: 100%;
  font-family: monospace;
  background-color: #f8c8dc; /* soft pink */
  color: #000;
}

/* Layout */
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  height: 100vh;
  line-height: 1.6;
}

/* Responsive text */
h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

p {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
