*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: aliceblue;
}


h1{
    text-align: center;
    font-size: 3rem;
}

header{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    width: 90%;
    /* border: 1px solid red; */
    margin: auto auto;
}

input{
    height: 120px;
    font-size: 2rem;
    width: 80%;
    padding: 6% ;

}

button.add{
    width: 20%;
    cursor: pointer;
    background-color: green;
    color: white;
    font-weight: bold;
    border: none;
    height: 120px;
    border-radius: 0px 10px 10px 0px ;
}

main{
    display: flex;
    flex-flow: row wrap ;
    width: 90%;
    margin: auto auto;
    /* border: 1px solid blue; */
    padding-top: 40px ;
}

.item{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 100%;
    height: 90px;
    box-shadow: 0 0 20px rgba(128, 128, 128, 0.849);
    margin: 5px;
    cursor: pointer;
    
}

.item-icone{
    flex:20%;
    /* border: 1px solid rgba(255, 166, 0, 0.993); */
    text-align: center;
    font-size: 2rem;
}
.item-nome{
    flex:55%;
    /* border: 1px solid rgb(224, 70, 96); */
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
.item-botao{
    flex:25%;
    /* border: 1px solid rgba(46, 221, 104, 0.993); */
}

.delete{
    background:red ;
    color: white;
    border: none;
    padding: 10px;
    height: 80px;
    width: 100%;
}

.item.clicado .item-nome{
    text-decoration: line-through;
    color: grey;
}

.item.clicado{
    background: rgba(177, 235, 177, 0.747);
}

.mdi-check-circle{
    color: rgba(70, 167, 75, 0.918);
}