@import url('https://fonts.googleapis.com/css2?family=Birthstone&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Merienda:wght@300..900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Varela&family=Winky+Rough:ital,wght@0,300..900;1,300..900&display=swap');
*{
    padding: 0;
    margin: 0;
    font-family: "Libre Baskerville", serif;
    font-weight: 500;
}
body{
    background-color: #a29bfe;
    display: flex;
    height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;

}
.box{
    width: 60%;
    height: 600px;
    border-radius: 10px;
    padding: 30px;
    background-color: #fff;
}
h2{
    text-align: center;
    font-weight: 600;
    font-size: 35px;
    margin-bottom: 10px;
}
input{
    width: 100%;
    height: 50px;
    font-size: 23px;
    font-weight: 200;
    padding-left:10px;
    padding-right:10px;
    border-radius: 10px;
    border: none;
    outline: none;
    box-shadow: 0px 0px 5px #636e72;
}
.todolistbox{
    padding: 7px;
    height: 512.5px;
    overflow: auto;
}
ul li{
    list-style: none;
    background-color: #2d3436;
    font-size: 17px;
    padding: 20px 10px;
    margin-top: 5px;
    color: white;
    border-radius: 10px;
    position: relative;
}
ul li i{
    position: absolute;
    right: 10px;
    top: 22px;
    cursor: pointer;
}
.changeitems{
    text-decoration: line-through;
    background: red;
}