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

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

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

#art-left {
  color: #ff0000;
}

#art-right {
  color: #0000ff;
}

@media (max-width: 768px) {
  .art-copy {
    font-size: clamp(4px, min(2vw, 0.9vh), 8px);
  }
  #art-left,
  #art-right {
    display: none;
  }
  #art-wrapper {
    justify-content: center;
  }
}

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

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