:root {
  --font-color: #FFF;
  --background-color: #000;
}

body {
  color: var(--font-color);
  background-color: var(--background-color);

  font-family: monospace;
}

h1 {
  font-size: 48px;
  margin-top: -5px;
}

h3 {
  font-size: 18px;
  margin-top: -30px;
}

.center {
  position: absolute;

  left: 50%;
  top: 50%;

  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

  text-align: center;
}
