* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #000000;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

.stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 6vh, 56px);
  width: 100%;
  padding: 5vh 24px;
}

.artwork {
  display: block;
  width: min(560px, 92vw);
  height: auto;
}

.links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 6vw, 44px);
}

.links a {
  display: block;
  line-height: 0;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.links a:hover,
.links a:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.links img {
  width: clamp(32px, 6vw, 40px);
  height: clamp(32px, 6vw, 40px);
  display: block;
}
