/* Font e colori */
body {
  margin: 0;
  padding: 0;
  background: #f8f8f8;
  color: #1a1a1a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Contenitore centrale */
main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
  text-align: center;
}

/* Testo */
p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 500px;
}

/* Link */
a {
  color: #1a1a1a;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

/* Responsive */
@media (max-width: 400px) {
  p {
    font-size: 16px;
  }
}

