.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  max-width: 100wh;
}

.header {
  margin: 2em 0;
}

h1 {
  text-align: center;
  font-size: 3em;
  font-weight: bold;
}

.toolbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 1em 0;
}

/* .slider {

} */

/* .tool {

} */

.slider-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid {
  display: grid;
  border: 1px solid black;
  width: 600px;
  height: 600px;
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.grid > div {
  place-self: stretch;
}

.footer {
  margin-top: auto;
}
