html,
body {
  margin: 0;
  padding: 0;
  background: #fff;
}

#art-wrapper {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.art-copy {
  font-family: "Courier New", monospace;
  font-size: clamp(4px, min(0.59vw, 1.35vh), 12px);
  line-height: 1.2;
  white-space: pre;
  margin: 0;
  user-select: none;
}

.art-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  mix-blend-mode: multiply;
}

#art-red {
  color: #ff0000;
  transform: translate(calc(-50% - 10px), calc(-50% - 2px));
}

#art-blue {
  color: #0000ff;
  transform: translate(calc(-50% + 10px), calc(-50% + 2px));
}

@media (max-width: 768px) {
  .art-copy {
    font-size: min(1.3vh, 10px);
  }
}


#art a {
  color: #0000ee;
  text-decoration: underline;
}

#art a:visited {
  color: #551a8b;
}
