/* OTM — main.css */

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: monospace;
  background: #0000AA;
  color: #FF2A00;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 20px;
}

.content-wrapper {
  display: flex;
  width: 100%;
  max-width: 1200px;
}

pre {
  font-size: 8px;
  margin: 10px;
  flex: 1;
}

.contact-links {
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: right;
}

.contact-links a {
  display: block;
  color: #FF2A00;
  text-decoration: none;
  margin-bottom: 5px;
}

.contact-links a:hover {
  text-decoration: underline;
}

canvas {
  margin: 10px;
  flex: 1;
  max-width: 100%;
  background: #0000AA;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: no-preference) {
  /* animations go here */
}
