* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 117%;
  text-align: center;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-weight: 400;
}

.container {
  width: 800px;
  margin: 0 auto;
}

header {
  background-color: #4a4f56;
  padding: 23px 0;
}

h1 {
  color: #FF8984;
  font-size: 36px;
  margin-bottom: 6px;
}

p {
  font-size: 24px;
  color: #FF8984;
}


main {
  background-color: #3B3F45;
  height: 100vh;
}

.shopping-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
}

.shopping-list li {
  width: 800px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transition: all .1s ease-in;
}

input[type="checkbox"] {
  width: 28px;
  height: 28px;
  cursor: pointer;
  margin-left: 13px;
  color: black;
  background-color: #ffff;
}


label {
  width: 800px;
  color: #ffff;
  font-size: 27px;
  line-height: 119%;
  display: flex;
  align-items: center;
  gap: 15px;
}

li:nth-child(odd) {
  background-color: #88839E;
}

li:nth-child(even) {
  background-color: #7A7593;
}

li:hover {
  background-color: #625E77;
  border-color: #ffff;
}

span {
  font-size: 17px;
  line-height: 129%;
}

span::before {
  content: '(';
}

span::after {
  content: ')';
}

input:checked+label {
  text-decoration: line-through;
  color: #9B96AC;
}

li:active {
  background-color: #ff8984;
}

button {
  width: 800px;
  padding: 16px 0;
  color: #ff8984;
  font-size: 28px;
  background: #4a4f56;
  border: none;
  margin-top: 40px;
  cursor: pointer;
  &:hover{
    background-color: #625E77;
    scale: 1.03;
    color: #fff;
    transition: ease .3s;
  }
}