*{
    box-sizing: border-box;
}
ul{
    padding: 0;
    list-style: none;
}
body{
    background-color:#ced3df;
    text-align: center;
  
}
button{
    outline:none;
    background:transparent;
    border:none;
    cursor:pointer;
}
/* section .list */
.list{
    width:400px;
    margin: 0 auto;
    background-color:#f1f0f7;
    border-radius:20px;
}
/* header */
.header{
    height:48px;
    padding:8px;
   font-size: 24px;
   background: rgba(237, 193, 211);
  background: linear-gradient(
    166deg,
    rgba(237, 193, 211, 1) 0%,
    rgba(219, 192, 216, 1) 35%,
    rgba(127, 188, 242, 1) 100%
  );
  /* border-top-left-radius: 20px;
  border-top-right-radius: 20px; */
  border-radius: 20px 20px 0 0 ;
color:white;
font-style: italic;
}
/* items */
.items{
    height:500px;
    overflow-y:auto;
}
.item{
    display:flex;
    justify-content:space-between;
    padding:8px 32px;
}
.item_delete{
   transition: all 300ms ease-in;
   font-size: 16px;
}
.item_delete:hover{
    color:red;
    transform:scale(1.1)
}
.item_divider{
    width:90%;
    height:1px;
    background-color:lightgray;
    margin:0 auto;
}

/* footer */
.footer{
    background: rgba(237, 193, 211);
    background: linear-gradient(
      166deg,
      rgba(237, 193, 211, 1) 0%,
      rgba(219, 192, 216, 1) 35%,
      rgba(127, 188, 242, 1) 100%
    );
    border-radius: 0 0 20px 20px  ;
    /* padding:8px; */
}
.footer_input{
    width:100%;
    height:32px;
    border:none;
    outline:none;
    font-size:24px;
    padding:0 16px;
    font-size: 15px;
}
.footer_button{
    width:48px;
    height:48px;
    font-size: 28px;
    background-color:black;
    border-radius: 50%;
    color:white;
    transition: transform 300ms ease-in;
}
.footer_button:hover{
    transform:scale(1.1);
}