body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100dvh;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

#content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
  max-width: 900px;
}

.listContainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input,
button {
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}
.wrap {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.addButton {
  background: steelblue;
}
button {
  background: #83e131;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.6);
}

button:hover {
  scale: 1.02;
}

button:active {
  scale: 0.95;
  opacity: 0.6;
}

.polyContainer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem;
  width: 100%;
  min-height: 60px;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px;
  box-sizing: border-box;
}

.bit {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 10px;
}
.deleteButton {
  background: palevioletred;
}
