/* © 2024 tohka dot net. All rights reserved. */

@import url( "https://fonts.googleapis.com/css2?family=Red+Hat+Mono:ital,wght@0,300..700;1,300..700&display=swap" );

* {
  --background: #141414;
  --foreground: #808080;
  --focused: #bebebe;
  --accent: #e3008c;

  background: var( --background );
  color: var( --foreground );
  text-decoration-color: var( --accent );

  font-family: "Red Hat Mono", monospace;
  font-size: 16pt;
  font-weight: normal;

  user-select: none;
}

div {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate( -50%, -50% );

  text-align: center;
}

a {
  display: block;

  width: 600px;
}

a:hover {
  color: var( --focused );

  font-weight: bold;
}

span {
  color: var( --accent );

  font-weight: inherit;
}

.link {
  display: inline;

  margin: 0px 12px 0px 12px;
}
