/* Stili globali per il sito senza tema */

/* Centra tutto il contenuto */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 2rem;
  text-align: center;
  line-height: 1.5;
  background: #fff;
  color: #222;
}

/* Stile h1 */
h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
}

/* Grassetto e link */
strong {
  font-weight: bold;
}

a {
  color: #0366d6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Linea orizzontale */
hr {
  margin: 2rem auto;
  border: 0;
  border-top: 1px solid #ccc;
  width: 50%;
}


/* Responsive per schermi piccoli */
@media (max-width: 600px) {
  body {
    padding: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  a, strong {
    font-size: 0.9rem;
  }

  hr {
    width: 80%;
  }
}
