* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
}

button {
  all: unset;
}

.app-shell {
  display: grid;
  grid-template-columns: auto 1fr;
  height: 100vh;
  background: #f5f5f5;
  color: #111;
}

.sketch-sidebar {
  border-right: 1px solid #ddd;
  background: #fff;
  padding: 20px;
  overflow-y: auto;
}

.sketch-sidebar h1 {
  margin-bottom: 14px;
}

.button-list {
  display: grid;
  gap: 8px;
}

.button-list button {
  /* border: 1px solid #ddd; */
  /* border-radius: 8px; */
  padding: 8px 10px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  color: rgb(200,200,200);
}

.button-list button:hover {
  border-color: #111;
}

.button-list button.is-active {
  /* background: #111; */
  /* color: rgb(200,200,200); */
  color: black;
  /* border-color: #111; */
}

.sketch-stage {
  position: relative;
  min-width: 0;
  min-height: 0;
}

#sketch-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

@media (max-width: 900px) {
  .app-shell {
    grid-template-columns: 1fr;
    grid-template-rows: 40vh 1fr;
  }

  .sketch-sidebar {
    border-right: 0;
    border-bottom: 1px solid #ddd;
  }
}

@font-face {
  font-family: 'Sneaky';
  src: url('/assets/Sneaky-Times.otf') format('opentype');
  font-style: normal;
}

#claim {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-100%);
  font-size: 165px;
  color: white;
  white-space: nowrap;
  font-family: 'Sneaky';

}

.ui-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 220px;
  height: 1px;
  border-radius: 999px;
  /* background: rgb(200,200,200); */
  background: black;
  outline: none;
}

.ui-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  /* background: rgb(200,200,200); */
  background: black;
  border: 1px solid black;
  cursor: pointer;
}

.ui-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff00ff;
  border: 2px solid #111;
  cursor: pointer;
}
