:root {
  --bg: #ffffff;
  --fg: #000000;
  --link: #0000cc;
  --muted: #555;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1116;
    --fg: #e7e7e7;
    --link: #9fb4ff;
    --muted: #9a9a9a;
  }
}
[data-theme="light"] {
  --bg: #ffffff;
  --fg: #000000;
  --link: #0000cc;
  --muted: #555;
}
[data-theme="dark"] {
  --bg: #0f1116;
  --fg: #e7e7e7;
  --link: #9fb4ff;
  --muted: #9a9a9a;
}
body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Times New Roman", "Georgia", serif;
  margin: 0;
  padding: 0;
  text-align: center;
}
.pagina {
  max-width: 520px;
  margin: 40px auto 60px auto;
  line-height: 1.45;
  text-align: left;
}
h1, h2 {
  text-align: center;
  margin-bottom: 6px;
}
.logo {
  display: block;
  margin: 0 auto 10px auto;
  width: 70px;
  height: 70px;
}
a { color: var(--link); }
hr {
  border: 0;
  border-top: 1px solid rgba(128,128,128,.4);
  margin: 1.4em auto;
  width: 70%;
}
footer {
  margin-top: 1.6em;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}
.tema-toggle {
  position: fixed;
  top: 8px;
  right: 8px;
  border: 1px solid var(--fg);
  background: var(--bg);
  color: var(--fg);
  font-size: 0.65rem;
  padding: 2px 6px;
  text-decoration: none;
  font-family: "Courier New", monospace;
  cursor: pointer;
}
.tema-toggle:hover {
  background: rgba(255,255,255,0.1);
}
.top-links {
  text-align: center;
  margin-bottom: 1.2em;
  font-size: 0.9rem;
}
.top-links a {
  margin: 0 .4em;
}

/* SVG email contact styling */
.svg-email-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

.svg-email-container p {
  margin: 0 0 0.5em 0;
  font-weight: bold;
}

.email-contact {
  width: 260px;
  height: 28px;
  color: var(--link);
  cursor: default;
}

.email-contact:hover {
  color: var(--fg);
}

.svg-email-contact text {
  font: 14px system-ui, sans-serif;
  fill: var(--link);
  dominant-baseline: middle;
}

/* OBFUSCATION: hide junk parts */
.svg-email-contact .junk {
  display: none;
}

/* hover on whole group */
.svg-email-contact:hover .bg {
  fill: var(--link);
}

.svg-email-contact:hover text {
  fill: var(--bg);
}