/* Reset base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Tahoma, Geneva, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Contenitore centrale */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
}

/* Contenuto centrato */
.content {
  text-align: center;
  max-width: 800px;
}

/* Sottotitolo */
.subtitle {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #555;
}

/* Titolo principale */
h1 {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #2c3e50;
}

/* Paragrafo */
p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #444;
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 1.4em;
  }

  .subtitle {
    font-size: 1em;
  }

  p {
    font-size: 1em;
  }
}
