* {
    box-sizing: border-box;
    list-style: none;
  }
  ul {
    padding: 0;
  }
  button {
    outline: none;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  body {
    background-color: #ced3df;
    text-align: center;
  }
  .list {
    width: 400px;
    margin: auto;
    background-color: #f1f0f7;
    border-radius: 20px;
  }
  .header {
    height: 48px;
    padding: 8px;
    font-size: 24px;
    background: #ffd600;
    background: linear-gradient(
      90deg,
      #ffd600 0%,
      #ffd600 40%,
      #ffd600 100%
    );
    border-radius: 20px 20px 0 0;
    color: #000;
  }
  .items {
    height: 500px;
    overflow-y: auto;
  }
  .item {
    display: flex;
    justify-content: space-between;
    padding: 8px 32px;
  }
  .item__delete {
    font-size: 16px;
    transition: all 200ms ease-in;
  }
  .item__delete:hover {
    color: tomato;
    transform: scale(1.1);
  }
  .item__divider {
    width: 90%;
    height: 1px;
    background-color: lightgray;
    margin: auto;
  }
  .footer {
    background: #ffd600;
    background: linear-gradient(
      90deg,
      #ffd600 0%,
      #ffd600 40%,
      #ffd600 100%
    );
    border-radius: 0 0 20px 20px;
  }
  .footer__input {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    font-size: 18px;
    padding: 0 16px;
  }
  .footer__btn {
    width: 48px;
    height: 48px;
    background-color: black;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: transform 200ms ease-in;
  }
  .footer__btn:hover {
    transform: scale(1.1);
  }