:root {
  --clr-primary: #a09abc;
  --clr-light: #fffcf9;
  --clr-dark: #352d39;
  --clr-warning: #6d435a;
}

body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  background-color: var(--clr-primary);
  color: var(--clr-light);

  display: grid;
  grid:
    "header header header color" auto
    "...... lists  activ ......" auto /
    1fr minmax(100px, 300px) minmax(250px, 500px) 1fr;
}

.title {
  grid-area: header;
  text-align: center;
  font-size: calc(7vw+2rem);
  font-weight: 900;
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}
.all-tasks {
  grid-area: lists;
}
.task-list {
  font-size: 1.2rem;
  line-height: 1.7;
  list-style: circle;
  padding: 1.1em;
}

.list-name {
  cursor: pointer;
}
.list-name:hover {
  opacity: 0.7;
}

form {
  display: flex;
}
.btn {
  cursor: pointer;
  background: 0;
  border: 0;
  padding: 0;
  color: inherit;
}
.btn.create {
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0.25em;
  transition: opacity 0.25s ease-in;
}
.btn.create:hover {
  opacity: 0.7;
}

.new {
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: inherit;
  outline: none;
  padding: 0.25em;

  transition: border-bottom 150ms ease-in;
  order: 2;
}
.new::placeholder {
  opacity: 0.4;
}

.new:focus {
  border-bottom-width: 3px;
}
.new:focus::placeholder {
  opacity: 0.2;
}
.new.list {
  font-size: 1.1rem;
  padding: 0.25em;
}
.new.task {
  margin-bottom: 0;
  padding: 0.25em;
}
.active-list {
  font-weight: 700;
}

.todo-list {
  --spacer: 2rem;
  grid-area: activ;
  color: var(--clr-dark);
}

.todo-header {
  padding: var(--spacer);
  background: #e4e4e4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 3px 3px 0px 0px;
}
.list-title {
  margin: 0 1em 0 0;
}

.task-count {
  margin: 0;
  font-size: 1rem;
}
.new-task-creator .create {
  color: var(--clr-primary);
}

.todo-body {
  background: var(--clr-light);
  padding: var(--spacer);
  position: relative;
  border-radius: 0px 0px 3px 3px;
}

[type="checkbox"] {
  opacity: 0;
  position: absolute;
}
.task label {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-bottom: 1.2em;
}

.task {
  position: relative;
  margin-bottom: 0.25em;
}
.task::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0.8em;
  height: 1px;
  background: currentColor;
  opacity: 0.1;
}

.custom-checkbox {
  --size: 0.75em;
  display: inline-block;
  width: var(--size);
  height: var(--size);
  margin-right: var(--size);
  cursor: pointer;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: scale(1);
  transition: transform 200ms ease-in-out;
}

.task:hover .custom-checkbox,
[type="checkbox"]:focus + label .custom-checkbox {
  transform: scale(1.2);
  color: var(--clr-primary);
}

[type="checkbox"]:checked + label .custom-checkbox {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  box-shadow: inset 0 0 0px 3px white;
}

[type="checkbox"]:checked + label {
  opacity: 0.5;
}

.task label::after {
  content: "";
  position: absolute;
  left: 1.5em;
  right: 0;
  top: 50%;
  height: 3px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 150ms ease-in-out;
}

[type="checkbox"]:checked + label::after {
  transform: scaleX(1);
  transform-origin: left;
}

.delete-stuff {
  display: flex;
  justify-content: space-evenly;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -35px;
  color: var(--clr-light);
}

.btn.delete {
  font-weight: 700;
  opacity: 0.7;
  letter-spacing: 1px;
  font-size: 1;
  transition: 200ms;
}
.btn.delete:hover {
  color: var(--clr-warning);
}

div.control-color {
  grid-area: color;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

div.control-color label {
  font-size: 0.8em;
  font-weight: bold;
  mix-blend-mode: difference;
}
