nav {
  ul {
    display: flex;
    padding: 0;
    align-items: center;
    margin: 0;

    li {
      display: inline-block;
      margin-right: 4px;
      a[disabled] {
        color: var(--text-main);
        text-decoration: none;
      }
    }

    li:first-child {
      font-family: serif;
      a {
        font-size: 3em;
        font-weight: bold;
      }
      a:hover {
        text-decoration: none;
      }
    }
    li:nth-child(2) {
      flex: 1;
    }
  }
  p {
    margin-top: -1em;
    font-family: serif;
    font-size: 0.8em;
  }
}

footer {
  text-align: center;

  p {
    margin: 0;
  }
}

@keyframes fade-in {
  from { opacity: 0 }
}

@keyframes fade-out {
  to { opacity: 0 }
}

@keyframes slide-in {
  from { transform: translateY(var(--_travel-distance, 10px)) }
}

summary {
  width: 100%;
}

@media (max-width: 500px) {
  nav {
    span.menu-item {
      display: none;
    }
  }
}

a[href^='mailto\:']::before {
    content: '';
}

ul.contact {
  span {
    margin-right: 1ch;
    display: inline-block;
  }
}

.whois th {
  width: 6ch;
}

span.zz {
  display: inline-block;
  margin: 1ch 0;
  margin-right: 1ch;
}
