/* Corpo pagina e font */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: Helvetica, Arial, sans-serif;
  background-color: white;
}

/* Header container */
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
}

/* Contenitore del titolo */
.titolo-container {
  width: 80%; /* Il testo occupa l'80% della larghezza */
  padding: 10px; /* margini interni */
  box-sizing: border-box;
}

.titolo-container h1 {
  margin: 0;
  font-weight: bold;
  font-size: 20px; /* <== Modifica qui la dimensione del titolo */
  text-align: justify;
}

.titolo-container h1::after {
  content: "";
  display: inline-block;
  width: 100%;
}

/* Freccia a destra */
.freccia-link {
  margin: 10px 10px 0 0; /* top + right 10px */
  display: block;
  height: 1em; /* Altezza proporzionata al testo */
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

.freccia-img {
  height: 100%;
  width: auto;
  display: block;
}

/* Footer */
footer {
  position: fixed;
  bottom: 10px;
  left: 10px;
  right: 10px;
  box-sizing: border-box;
}

#footer-logo {
  width: 100%;
  height: auto;
  display: block;
}
