/* style.css */
body {
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #222;
}

header {
  background-color: #008000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
}

header .logo {
  width: 240px;
  height: auto;
}

header h1 {
  margin-bottom: 0.3rem;
}

main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.comunicato {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.comunicato .testo {
  text-align: justify;
  line-height: 1.8;
  text-indent: 1.5em;
  text-justify: inter-word;
}

.comunicato h2 {
  margin-top: 0;
  color: #006fad;
}

.data {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.8rem;
}

footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  background-color: #e9ecef;
}
