html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #eee;
  color: #333;
  display: grid;
  min-height: 95vh;
  place-items: center;
}

main {
  max-width: 60ch;
  margin: 0 auto;
}

button {
  min-height: 2.5rem;
  min-width: 2.5rem;
}

select,
input[type="color"],
input[type="range"] {
  width: 100%;
}

svg {
	background-color: #eee;
  display: block;
}

#sky {
  fill: skyblue;
}

.actions {
  display: flex;
  justify-content: space-between;
}

.stacked-buttons {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

@media only screen and (prefers-color-scheme: dark) {
  body {
    background: #333;
    color: #eee;
  }
}
