body {
  font-family: "Press Start 2P", system-ui;
  font-weight: 400;
  font-style: normal;
  background-color: black;
  color: white;
}

.contents {
  display: contents;
}

.back {
  margin: auto;
  max-width: 200px;
}

.no-link {
  color: white;
  text-decoration: none;
}

.blink_me {
  animation: blinker 1s linear infinite;
}

span.text-danger {
  text-decoration: underline;
  cursor: pointer;
}

.selectable {
  cursor: pointer;
}

.selectable:hover {
  background: magenta;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}