* { box-sizing: border-box; }

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

body {
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
  color: #050505;
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
}

a { color: inherit; text-decoration: none; }

a:hover, a:focus-visible { opacity: 0.45; }

.watching {
  position: fixed;
  top: 4.6vh;
  right: 3.4vw;
  white-space: nowrap;
}

/* one long horizontal line, rotated along the left edge */
.mouse {
  position: fixed;
  left: 2.4vw;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center;
  white-space: nowrap;
}

.mouse-line {
  display: flex;
  align-items: center;
  gap: 38px;
}

.downloads {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 82px;
}

.downloads a {
  display: block;
  min-width: 60px;
  text-align: center;
}

.albums {
  position: fixed;
  right: 3.4vw;
  bottom: 5.1vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.albums a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 700px) {
  body { font-size: 10px; }
  .watching { top: 3.5vh; right: 5vw; }
  .mouse { left: 4vw; }
  .mouse-line { gap: 24px; }
  .downloads { gap: 58px; }
  .albums { right: 5vw; bottom: 4vh; gap: 16px; }
}
