body {
  display: flex;
  flex-direction: column;
  align-items: left;
  height: 100vh;
  margin: 0;
  padding: 1rem;
  gap: 1rem;
  user-select: none;
  
  background-color: black;
  color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

input, button {
  padding: 0.25rem 0.5rem;

  border: none;
  border-radius: 0.5rem;
}

input {
  width: 15rem;
  max-width: 95%;

  background: transparent;
  color: white;
}

button {
  cursor: pointer;
  width: fit-content;
}

.circle-container {
  position: relative;
  width: 300px;
  height: 300px;
}

.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  justify-content: center;
  text-align: center;

  border-radius: 50%;
  display: flex;
}

.outer-circle {
  width: 300px;
  height: 300px;
  background-color: rgb(25, 25, 25);
}

.inner-circle {
  width: 200px;
  height: 200px;
  cursor: grab;
  background-color: rgb(50, 50, 50);
}

.circle span {
  position: absolute;
  transform-origin: calc(center - 2rem) center;
  font-size: 1rem;
  line-height: 0;
}

.section {
  display: flex;
  flex-direction: column;
}