* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.canvas {
  border: 1px grey solid;
  background-color: white;
}

.slider-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.board {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
}

#main {
  display: grid;
  grid-template-columns: auto 500px;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-items: center;
}
