* {
  box-sizing: border-box;
}

/* stile di base per tutti i link */
a {
  color: #147174;            /* colore che preferisci */
  text-decoration-color: #147174;
}

/* quando ci passi sopra col mouse */
a:hover {
  color: #147174;            /* un po' più chiaro, se vuoi */
  text-decoration: underline;
}

/* link già visitati */
a:visited {
  color: #147174;            /* leggermente diverso, opzionale */
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000000; /*0b1020*/
  color: #147174;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem;
}

.site-header {
  background: radial-gradient(circle at top, #000000, #000000); /*243b80    070a14*/
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header h1 {
  margin: 0;
  font-size: 2rem;
}

.brand {
  display: flex;
  flex-direction: column;   /* logo sopra, testo sotto */
  align-items: center;      /* centra orizzontalmente */
  gap: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;       /* centra il testo sotto il logo */
}

.logo {
  width: 600px;       /* dimensione del logo: puoi aumentare o diminuire */
  height: auto;
  border-radius: 12px;  /* opzionale: angoli leggermente arrotondati */
}

.tagline {
  margin: 0.3rem 0 1rem 0;
  color: #147174;
}

.nav {
  margin-bottom: 0.5rem;
}

.nav a {
  margin-right: 1rem;
  text-decoration: none;
  color: #147174;
  font-size: 0.95rem;
}

.nav a:hover {
  text-decoration: underline;
}

.card {
  background: #07272b; /*111628*/
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card h2 {
  margin-top: 0;
}

.log-entry {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  margin-top: 1rem;
}

.log-entry h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  color: #147174;
}

.log-entry p {
  margin: 0;
  font-size: 0.95rem;
}

.small {
  font-size: 0.85rem;
  color: #147174;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding: 1rem 0 2rem 0;
  font-size: 0.85rem;
  color: #157d99;
  text-align: center;
}

