/* dev.css */

.site-header,
.site-footer {
  font-family: var(--font-sans);
  font-size: 10pt;
  font-color: #333;
}

.site-header {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-header-home {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: inherit;
}

.site-header-icon {
  height: 5em;   /* 1.5x text height */
  width: auto;
  display: block;
}

.site-footer {
  margin-top: 3rem;
  padding-top: 1rem;
  padding-left: 2vw;
  border-top: 1px solid #ddd;
  font-color: #666;

  display: flex;
  align-items: center;
  gap: 2vw;
  flex-wrap: wrap;
}

.site-footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer a {
  text-decoration: none;
  color: #1d4ed8;
}

.site-footer a:hover {
  text-decoration: underline;
}

