body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: black;
  color: white;
  animation: fadeIn 0.45s ease forwards;
}

/* Fix black screen when using browser back button */
body.loaded {
  animation: none;
  opacity: 1;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(1.01); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes fadeOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.99); }
}

body.fading-out {
  animation: fadeOut 0.35s ease forwards;
  pointer-events: none;
}

/* Top bar */
.top-bar {
  position: absolute;
  top: 15px;
  left: 30px;
  font-size: 22px;
  color: #aaa;
}

.left-icons span {
  margin-right: 20px;
}