body {
  font-family: monospace;
  background-color: #27212b;
  color: #dddddd;
  font-size: clamp(14px, 3.5vw, 16px);
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

html, body {
  height: 100%;
  margin: 0;
}

p {
  line-height: 1.4;
}

.double-box {
  display: inline-block;
  border: 2px solid #cccccc;
  outline: 2px solid #cccccc;
  outline-offset: 2px;
  padding: 10px;
  text-align: center;
  font-family: monospace;
  width: min(80ch, 92vw);
  box-sizing: border-box;
}

.divider {
  display: block;
  width: 100%;
  margin: 3em 0;
  overflow: hidden;
  text-align: center;
}

.divider::before {
  content: "⠁⠂⠄⠄⠂⠁⠁⠂⠄⠄⠂⠁⠁⠂⠄⠄⠂⠁⠁⠂⠄⠄⠂⠁⠁⠂⠄⠄⠂⠁⠁⠂⠄⠄⠂⠁⠁⠂⠄⠄⠂⠁⠁⠂⠄⠄⠂⠁⠁⠂⠄⠄⠂⠁⠁⠂⠄⠄⠂⠁";
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .divider::before {
	max-width: 90vw;
	overflow: hidden;
  }
}

a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

.line {
  width: 92.5%;
  max-width: 100%;
  margin: 1em auto;
  border: none;
  border-top: 1px solid #999999;
}

.silly-text {
  position: absolute;
  top: -10px;
  left: -10px;

  transform: translate(-35%, -45%) rotate(-25deg);
  transform-origin: top left;

  font-family: 'Caveat', cursive;
  font-size: clamp(40px, 6vw, 56px);
  color: #cccccc;
  opacity: 0.85;
  pointer-events: none;
}

.logo {
  display: block;
  width: min(360px, 90vw);
  height: auto;
  margin: -50px auto 0;
}

@media (max-width: 600px) {
  .logo {
	width: min(240px, 80vw);
  }
}

.last-updated {
  text-align: right;
  font-size: 12px;
  color: #888;
  opacity: 0.5;
  margin: 20px 10px 10px 0;
  user-select: none;
}

.last-updated:hover {
  opacity: 1.0;
}

main {
  flex: 1;
}

footer {
  display: flex;
  justify-content: flex-end;
  padding: 10px;
}