﻿@font-face {
  font-family: "Latin Modern Mono";
  src: url("regular.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

html, body {
  font-family: "Latin Modern Mono", monospace;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 1.3rem;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: left;
  position: relative;
}

.logo {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 700px;
  width: 100%;
  height: auto;
  z-index: 1000;
}

.links {
  max-height: 80vh;
  overflow-y: auto;
  display: inline-block;
  text-align: left;
}

.links a, .todo {
  display: block;
  margin-bottom: .42em;
  text-decoration: none;
  color: inherit;
  font-weight: inherit;
  font-family: inherit;
}

.links a:hover {
  color: #fff;
}
.links a:clicked {
  color: #000;
}

.todo {
  text-decoration: line-through;
}

.sprite-live,
.sprite-dead {
  position: fixed;
  top: 0;
  left: 0;
  height: auto;
  z-index: 9999;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
  transition: transform 0.42s linear;
}

.sprite-live {
  pointer-events: auto;
  width: 100px;
}

.sprite-dead {
  pointer-events: none;
  width: 73px;
}