* {
  margin: 0;
  padding: 0;
  font-family: "Helvetica", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}
*::-moz-selection {
  background-color: #0000ff;
  color: #fefefa;
}
*::selection {
  background-color: #0000ff;
  color: #fefefa;
}

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

.hidden {
  display: none !important;
}

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

html[data-theme=dark] {
  color-scheme: dark;
  color: #93938e;
  background-color: #181819;
}
html[data-theme=dark] *:focus-visible {
  outline-color: #181819;
}
html[data-theme=dark] a {
  color: #e0e0d9;
}
html[data-theme=dark] button {
  border-color: #fefefa;
}
html[data-theme=dark] button:hover, html[data-theme=dark] #tuning-select:hover {
  box-shadow: 3px 3px 0 #fefefa;
}
html[data-theme=dark] button:active, html[data-theme=dark] #tuning-select:active {
  box-shadow: inset 3px 3px 0 #fefefa;
}
html[data-theme=dark] .active {
  color: #181819;
  background-color: #fefefa;
}
html[data-theme=dark] .card {
  border-color: #38383a;
}
html[data-theme=dark] img, html[data-theme=dark] video {
  opacity: 0.7;
}
html[data-theme=dark] #needle {
  background: #fefefa;
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme]) {
    color-scheme: dark;
    color: #93938e;
    background-color: #181819;
  }
  html:not([data-theme]) *:focus-visible {
    outline-color: #181819;
  }
  html:not([data-theme]) a {
    color: #e0e0d9;
  }
  html:not([data-theme]) button {
    border-color: #fefefa;
  }
  html:not([data-theme]) button:hover, html:not([data-theme]) #tuning-select:hover {
    box-shadow: 3px 3px 0 #fefefa;
  }
  html:not([data-theme]) button:active, html:not([data-theme]) #tuning-select:active {
    box-shadow: inset 3px 3px 0 #fefefa;
  }
  html:not([data-theme]) .active {
    color: #181819;
    background-color: #fefefa;
  }
  html:not([data-theme]) .card {
    border-color: #38383a;
  }
  html:not([data-theme]) img, html:not([data-theme]) video {
    opacity: 0.7;
  }
  html:not([data-theme]) #needle {
    background: #fefefa;
  }
}
p, i, small {
  display: block;
}

h1 {
  font-size: 30px;
}

small {
  font-size: 13px;
}

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

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

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

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

li {
  list-style: square;
  line-height: 1.65;
}

#gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  grid-auto-rows: minmax(50px, auto);
  gap: 30px;
  margin-top: 30px;
}
#gallery-grid img, #gallery-grid video {
  width: 100%;
}

.card {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 15px;
}

#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);
}

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