html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  background-color: #090909;
  background-image: url("/assets/background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.links {
  position: fixed;
  left: 48px;
  top: 40px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;

  font-family: Helvetica, Arial, sans-serif;
}

.links a {
  color: #606060;
  text-decoration: none;
  font-size: 24px;
  font-weight: 900;
}

.links a:hover {
  color: #808080;
}