html {
  font-size: 1.5rem;
}

body {
  color: white;
  background-color: black;
  font-family: monospace;
  margin: 2.5em;
}

li {
  list-style-type: square;
}

a {
  color: white;
  text-decoration: none;
  transition: color 0.15s ease;
}

a::after {
  content: " ↗";
  color: #777777;
  margin-left: -0.25rem;
  font-size: 1.25em;
}

a:hover {
  color: #999999;
  transition: color 0.3s ease;
}

.color-helpdesk:hover {
  color: #00aaff;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  transition: opacity 0.5s ease;
}

.loading.loaded {
  opacity: 0;
  pointer-events: none;
}

.loading-symbol {
  width: 2rem;
  height: 2rem;
  border: 0.25rem solid white;
  border-top: 0.25rem solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.footer {
  margin-top: 2.5em;
}
