* {
  margin: 0;
  padding: 0;
  font-family: "Fragment Mono", monospace;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}
*::-moz-selection {
  background-color: #0000FF;
  color: #fff;
}
*::selection {
  background-color: #0000FF;
  color: #fff;
}

body {
  display: grid;
  gap: 15px;
  padding: 30px;
}
body#gallery {
  display: block;
}

.hidden {
  display: none !important;
}

html,
html[data-theme=light] {
  color-scheme: light;
  color: #000;
  background-color: #fff;
}
html *:focus-visible,
html[data-theme=light] *:focus-visible {
  outline-color: #000;
}
html a,
html[data-theme=light] a {
  color: #0000FF;
}
html #needle,
html[data-theme=light] #needle {
  background: #000;
}
html button,
html[data-theme=light] button {
  border-color: #000;
}
html #tuning-select,
html[data-theme=light] #tuning-select {
  box-shadow: 0 0 0 #000;
}
html #tuning-select:hover,
html[data-theme=light] #tuning-select:hover {
  box-shadow: 3px 3px 0 #000;
}
html #tuning-select:active,
html[data-theme=light] #tuning-select:active {
  box-shadow: inset 3px 3px 0 #000;
}
html .active,
html[data-theme=light] .active {
  color: #fff;
  background-color: #000;
}

html[data-theme=dark] {
  color-scheme: dark;
  color: #d1cbc5;
  background-color: #000;
}
html[data-theme=dark] *:focus-visible {
  outline-color: #000;
}
html[data-theme=dark] a {
  color: #fff;
}
html[data-theme=dark] #needle {
  background: #fff;
}
html[data-theme=dark] #bisnoni-image {
  filter: invert(1);
}
html[data-theme=dark] button {
  border-color: #fff;
}
html[data-theme=dark] button:hover, html[data-theme=dark] #tuning-select:hover {
  box-shadow: 3px 3px 0 #fff;
}
html[data-theme=dark] button:active, html[data-theme=dark] #tuning-select:active {
  box-shadow: inset 3px 3px 0 #fff;
}
html[data-theme=dark] .active {
  color: #000;
  background-color: #fff;
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme]) {
    color-scheme: dark;
    color: #d1cbc5;
    background-color: #000;
  }
  html:not([data-theme]) *:focus-visible {
    outline-color: #000;
  }
  html:not([data-theme]) a {
    color: #fff;
  }
  html:not([data-theme]) #needle {
    background: #fff;
  }
  html:not([data-theme]) #bisnoni-image {
    filter: invert(1);
  }
  html:not([data-theme]) button {
    border-color: #fff;
  }
  html:not([data-theme]) button:hover, html:not([data-theme]) #tuning-select:hover {
    box-shadow: 3px 3px 0 #fff;
  }
  html:not([data-theme]) button:active, html:not([data-theme]) #tuning-select:active {
    box-shadow: inset 3px 3px 0 #fff;
  }
  html:not([data-theme]) .active {
    color: #000;
    background-color: #fff;
  }
}
h2 {
  margin-top: 15px;
}

a {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
a:active {
  opacity: 0;
}
a:visited {
  text-decoration: none;
}

ul {
  display: grid;
  gap: 5px;
}

li {
  list-style: square;
}

iframe {
  margin: 5px 0 15px;
  border: 0;
  width: 100%;
  max-width: 600px;
  height: 120px;
  display: block;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

.button-group {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

h1, h2, h3 {
  font-family: Helvetica, sans-serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
}

#bisnoni {
  gap: 30px;
}
#bisnoni #bisnoni-image {
  max-width: 600px;
  margin: 60px auto 15px;
}
#bisnoni h2 {
  margin-top: 0;
}

.inline-text-group {
  display: flex;
  gap: 5px;
}

#tuner-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  text-align: center;
}

#needle-container {
  width: 100%;
  height: 25px;
  margin: 0 auto 30px;
  position: relative;
  background: transparent;
}

#needle {
  width: 2px;
  height: 30px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transition: left 0.125s ease-in-out;
}

#tuning-select {
  padding: 20px;
  margin: 30px auto 0;
  border: 0;
  outline: 1px solid;
  border-right: 20px solid transparent;
  transition: all 0.125s;
}

#instrument-container h1, #instrument-container p {
  text-align: center;
}
#instrument-container h1 {
  margin-bottom: 20px;
}
#instrument-container .button-group {
  flex-wrap: wrap;
  margin-top: 0;
}
#instrument-container button {
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  border: 1px solid;
  transition: all 0.125s;
  flex: 1 1 5%;
}
#instrument-container p {
  display: block;
  margin-top: 15px;
}
#instrument-container #startStop {
  position: absolute;
  bottom: 30px;
  width: calc(100% - 60px);
}

#sketch-controls {
  position: absolute;
  bottom: 20px;
  z-index: 10;
  justify-self: center;
  width: calc(100% - 40px);
  justify-content: space-between;
}
#sketch-controls button {
  background-color: #fff;
  border: 1px solid #000;
  padding: 3px 7px;
}

#drawingCanvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  cursor: crosshair;
  touch-action: none;
}

#gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  grid-auto-rows: minmax(50px, auto);
  gap: 30px;
  margin-top: 30px;
}
#gallery-grid img {
  width: 100%;
  image-rendering: crisp-edges;
}/*# sourceMappingURL=styles.css.map */