*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h2{
    color: #33186B;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Roboto Condensed', sans-serif;
background-color: #F2AFEF;
}
.input{
    text-align: center;
    margin: 1rem;
    padding: 1rem;
    /* border: 2px solid black; */
}

.input input{
    font-family: 'Oswald', sans-serif;
    font-family: 'Poppins', sans-serif;
    font-family: 'Roboto Condensed', sans-serif;
    border-radius: 1rem;
    height: 2rem;
    padding: 1rem;
    margin: 1rem;
    border: none;
}
#btn{
    width: 3rem;
    height: 2rem;
    border-radius: 1rem;
    cursor: pointer;
    background-color: green;
    color: white;
    /* box-shadow:  0 0 5 0; */
}

#btn:hover{
    background-color: white;
    color:black;
}
/* .items{
    display: flex;
    flex-direction: column;
} */
.item{
    display: flex;
    min-height: 10vh;
    justify-content: center;
    align-items: center;
    /* border: 2px solid red; */
    border-radius: 3rem;
    background-color: #7360DF;
   
    margin: 1rem 0;
}
.item p{
    font-family: 'Oswald', sans-serif;
    font-family: 'Poppins', sans-serif;
    font-family: 'Roboto Condensed', sans-serif;
    width: 80%;
    padding: 1rem;
    color: white;
}

.item button{
    cursor: pointer;
    border-radius: 1rem;
    width: 1rem;
}

.done {
    text-decoration: line-through;
    background-color: #C499F3;
    color: black;
}



