@font-face {
    font-family: "AtkinsonHyperlegible";
    src: url("/static/webfonts/AtkinsonHyperlegible-Regular.woff2") format("woff");
}

html body {
    font-family: "AtkinsonHyperlegible";
    padding: none;
    margin: none;
}

h1 a, h2 a, h3 a, h4 a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: blue;
  text-decoration: underline;
}

div.content {
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

.content img {
  max-width: 100%;
}

img.post-list-splash {
  width: 100px;
  float: left;
  margin-right: 10px;
}

iframe {
  max-width: 100%;
}

/* keep videos from being too big and from distorting
   https://stackoverflow.com/a/46772808/101923 */
video {
  max-width: 100%;
  object-fit: cover;
}

.logo-link:hover {
  text-decoration: none;
}

.logo {
  width: 48px;
  height: 48px;
  position: relative;
  top: 4px;
  left: 4px;
}

fieldset {
  display: grid;
  grid-template-columns: auto auto;
}

fieldset label {
  justify-self: end;
  align-self: center;
  margin-right: 2pt;
}

.loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #3498db;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}