html {
  display: flex;
  align-items: center;
  justify-content: center;
}

body {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 800px;
  min-height: 100vh;
  padding: 40px;
  text-align: center;
}

h1, h2 {
   font-family: "Wallpoet", monospace;
   color: white;
}

h1 {
   font-size: 4rem;
}

h2 {
   font-size: 0.8rem;
}

pre {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 5px;
  color: black;
  background: wheat;
  border: 2px solid grey;
}

main, pira-player {
  width: 100%;
  max-width: 480px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notes {
  font-size: 0.6rem;
  font-style: italic;
}

@media (max-width: 768px) {
  body {
    width: 100vw;
  }

  h1 {
    font-size: 2rem;
  }
}