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

/* Corpo */
body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #029992; /* Colore sfondo */
  font-family: "Gill Sans MT", "Gill Sans", sans-serif;
  color: #000000; /* testo di default nero */
  padding: 20px;
}

/* Contenitore centrale */
.container {
  text-align: center;
  max-width: 90%;
  width: 100%;
}

/* Logo */
.logo {
  width: min(180px, 70vw);
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
}

/* Titolo principale */
h1 {
  font-size: 25pt;
  font-weight: 600;
  color: #000000; /* nero */
  line-height: 1.2;
  word-wrap: break-word;
  margin-bottom: 10px;
}

/* Sottotitolo */
.subtitle {
  font-size: 14pt;
  color: #ffffff; /* bianco */
  margin-top: 0;
  opacity: 0.9;
}
