body {
  font-family: "Comic Mono", sans-serif;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 14pt;
}
@media screen and (max-width: 600px) {
  body {
    font-size: 12pt;
  }
}
@media screen and (max-width: 360px) {
  body {
    font-size: 10pt;
  }
  body #header__second-row {
    font-size: 12px;
  }
}

@media screen and (max-width: 280px) {
  .big-only {
    display: none;
  }
}

#header {
  padding: 10px 0;
}
#header__first-row {
  display: flex;
  align-items: baseline;
}
#header__second-row {
  font-size: 0.8em;
  margin-top: 0.5em;
  display: flex;
  justify-content: end;
  align-items: baseline;
}
@media screen and (max-width: 350px) {
  #header__signed-in-as {
    display: none;
  }
}

.header__link {
  margin-left: 0.75em;
}

.spacer {
  flex-grow: 1;
}

a, .link-button {
  border: unset;
  font-family: unset;
  background: unset;
  font-size: unset;
  padding: unset;
  margin: unset;
  text-decoration: none;
  text-underline-offset: 0.15em;
  color: #2301CB;
  cursor: pointer;
}
a:hover:not(:disabled), .link-button:hover:not(:disabled) {
  text-decoration: underline;
}
@media screen {
  a::before, .link-button::before {
    content: "[";
    content: "["/"";
  }
  a::after, .link-button::after {
    content: "]";
    content: "]"/"";
  }
}
a::before, a::after, .link-button::before, .link-button::after {
  color: #888;
}
a:disabled, .link-button:disabled {
  color: #bbb !important;
  cursor: default;
}
a .avatar, .link-button .avatar {
  height: 1.2em;
  width: 1.2em;
  vertical-align: middle;
  border-radius: 50%;
  position: relative;
  top: -0.12em;
  box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.1333333333);
}

#content h3 {
  text-align: center;
}

.error-box {
  color: #BF2237;
  border: 3px solid;
  border-radius: 5px;
  margin-top: 0.5em;
  padding: 0.5em;
  text-align: center;
}

.hidden {
  display: none;
}
