/* global.css */
* {
  user-select: none;
  -webkit-user-select: none;
}
body,
html {
  color: #333;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  overflow: hidden;
}
label {
  display: block;
}
input:disabled {
  color: #ccc;
}
input[type=range] {
  height: 0;
}
button {
  color: #333;
  background-color: #f4f4f4;
  outline: none;
}
button:disabled {
  color: #999;
}
button:not(:disabled):active {
  background-color: #ddd;
}
button:focus {
  border-color: #666;
}
