*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 62.25%;
}
body{
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    background:linear-gradient(to right, #523aaf,#697e2d);
    margin-top: 10rem;

}
h1{
    font-size: 5rem;
    margin-bottom: 1rem;
    color: #fff;
}
input{
    width: 30rem;
    height: 3rem;
    margin: 1rem;
    border: none;
    border-radius: 5px;
    padding: 0.5rem;
    font-size: large;
}
button{
    height: 3rem;
    margin: 1rem;
    border: none;
    border-radius: 10px;
    padding: 0.5rem;
    font-size: large;
    background-color: #f9f871;
    color: #37584f;
    font-weight: bold;
}

button:hover{
    background-color: #37584f;
    color: #f9f871;
}

li{
    font-size: 2rem;
    color: #000000;
    margin-left: 1rem;
}



.tododata {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    background-color: #ffffff09;
    border-radius: 1rem;
}
.tododata li, .tododata button {
    display: inline-block;
    margin-right: 2rem; 
}
.tododata div {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem; 
    justify-content: space-between;
}