#display {
  color: #74c7ec;
}

h1 {
  color: #74c7ec;
}

svg {
  width: 100%;
  background: #1e1e2e;
}

body {
  background: #1e1e2e;
  margin: 0;
  padding: 1em;
  font-family: monospace;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#output {
  display: flex;
}

#info, #input {
  box-sizing: border-box;
  padding: 1em;
  width: 100%;
  background: #181825;
  border: none;
  border-radius: 0.62rem;
  color: #cdd6f4;
}

#input {
  height: 50vh;
}

#desk {
  fill: #181825;
  rx: 0.62rem;
}

#zerocircle {
  fill: transparent;
  stroke: #74c7ec;
}
#zeropath {
  fill: #74c7ec;
  stroke: #74c7ec;
}

.cutpath {
  stroke: #eba0ac;
  fill: transparent;
}

.movepath {
  stroke: #89b4fa;
  fill: transparent;
}

@media (width > 100vh) {
  body {
    display: grid;
    grid-template-columns: 1fr 3fr;
  }
  #input {
    height: 80vh;
  }
  #info {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: fit-content;
    height: fit-content;
  }
}
