:root {
  --darkGray: #7a7593;
  --lightGray: #89849f;
  --brown: #eb7e7f;
  --black: #3b3f45;
  --ligtBlack: #4a4f56;
  --textCheckbox: #c9c8d9;
  --Select: #625e77;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.2s ease-in;
  font-family: "Trebuchet MS", Arial, sans-serif;
}
html {
  margin: 10px;
  background-color: white;
}
body {
  min-width: 100vh;
  min-height: 100vh;
  background-color: var(--black);
  text-align: center;
}
.label:nth-child(odd) .list__item:not(:hover) {
  background-color: var(--lightGray);
}
.label:nth-child(even) .list__item:not(:hover) {
  background-color: var(--ligtBlack);
}

.header {
  height: 95px;
  background-color: var(--ligtBlack);
  color: var(--brown);
  margin-bottom: 40px;
}
.header__title {
  padding-top: 15px;
  padding-bottom: 1px;
}
.title__bot {
  font-size: 20px;
}
.list {
  font-size: 20px;
  margin: 0 auto;
  width: 55%;
  text-align: left;
  margin-bottom: 40px;
}

.list__item {
  display: block;
  padding: 20px 0px 20px 15px;
  color: white;
  font-size: 20px;
  transition: all ease 0.2s;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.list__item:hover {
  background-color: var(--Select);
  border-color: white;
}
.list__item:active {
  background-color: red;
}
input:checked + .text {
  text-decoration-line: line-through;
  color: var(--textCheckbox);
}
.text__checkbox {
  font-size: 15px;
  color: var(--textCheckbox);
}

.text__checkbox::before {
  content: " ( ";
}
.text__checkbox::after {
  content: " ) ";
}
.checkbox {
  vertical-align: middle;
  width: 20px;
  height: 20px;
}
.button {
  text-decoration: none;
  font-size: 25px;
  display: block;
  color: var(--brown);
  background-color: var(--ligtBlack);
  margin: 0 auto;
  width: 55%;
  padding: 20px 0px 20px 15px;
}
