* {
  margin: 0;
  padding: 0;
  font-family: 'px';
  font-size: 20px;
}

#export-frame-button {
  position: fixed;
  bottom: 105px;
}

#export-all-frames-button {
  position: fixed;
  bottom: 50px;
}

@font-face {
  font-family: 'px';
  src: url('./px_grotesk_light.ttf');
}

body {
  width: 100vw;
  height: 100vh;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

canvas {
  display: block;
  transform: scale(3);
  image-rendering: pixelated;
}

button {
  padding: 9px 20px;
  border-radius: 100px;
  border: solid 1px black;
  background: white;
}

select {
  border-radius: 100px;
  padding: 5px 20px;
  border: solid 1px black;
}

option::first-letter {
  text-transform: uppercase;
}

input,
select,
button {
  cursor: pointer;
}

input[type='range'] {
  appearance: none;
  width: 100px;
  height: 1px;
  outline: none;
  padding: 0;
  background: black;
}

input[type='range']::-webkit-slider-thumb {
  appearance: none;
  background: black;
  outline: none;
  height: 12px;
  width: 12px;
  border-radius: 50%;
}

input[type='range']::-webkit-slider-runnable-track {
  width: 100px;
}

input[type='color'] {
  width: 20px;
  height: 20px;
  background: none;
  padding: 0;
  margin: 0;
  border: none;
}

input[type='color']::-webkit-color-swatch-wrapper {
  padding: 0;
}

input[type='color']::-webkit-color-swatch {
  border-radius: 50%;
  border: solid 0.1px rgb(175, 175, 175);
}
