body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  min-height: 100vh;
  padding: 2.5rem 1rem 3rem;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  body {
    justify-content: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

label {
  font-size: 1.2rem;
}

input {
  padding: 0.25em 0.5em;
  font-size: 1rem;
  font-family: inherit;
  background: #000;
  color: #fff;
  border: 1px solid #666;
}

button {
  background: none;
  border: 1px solid #666;
  color: #ddd;
  font-family: inherit;
  font-size: 1.2rem;
  padding: 0.5em 1em;
  cursor: pointer;
}

.title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 3rem;
}

.title .glyph.feather-glyph,
.feather {
  display: inline-block;
  width: 2em;
  height: 2em;
}

input[type="range"] {
  width: 10em;
}

.footer-note {
  font-size: 1rem;
  text-align: center;
  margin-top: auto;
  margin-bottom: 0.5rem;
  color: #ccc;
}

.lyrics {
  font-size: 1rem;
  text-align: center;
  white-space: pre-wrap;
}

a {
  color: #9cd8ff;
}
