/* Local adjustments to Minimal Light's official static HTML edition. */
* {
  box-sizing: border-box;
}
header {
  padding-top: 72px;
}
main {
  width: 650px;
  float: right;
  padding-top: 64px;
  padding-bottom: 50px;
}
[hidden] {
  display: none !important;
}
.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #111;
}
.social-links svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.social-links a:hover {
  color: #32688b;
}
a:focus-visible {
  outline: 2px solid #32688b;
  outline-offset: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 960px) {
  header {
    padding-top: 32px;
  }
  main {
    float: none;
    width: auto;
    padding-top: 32px;
  }
}
@media print {
  header,
  main {
    position: static;
    float: none;
    width: auto;
    padding-top: 0;
  }
}
