*{
box-sizing: border-box;
}

body{
    
    margin: 0;
    padding: 0;
    background: #ccc;
}
.teste{
    border: solid black 1px;
    margin-top: 10%;
   
    justify-content: center;
}
.h1{
    
    font-size: 3rem;
}
header{
    
    display: flex;
    flex-flow: row wrap;
    width: 80%;
    margin:  auto auto;
    align-items: center;
}
input{
    border: 1px solid blue;
  
    border-radius: 10px;
    height: 50px;
    width: 70%;
    font-size: 1.5rem;
   text-align: center;
    background: rgba(255, 255, 255, 0.562);
}
input:hover{
    border-bottom: 1px solid blue;
    transition: linear .3s;
    
}


button.add{
    margin-left: 10%;
    width: 20%;
    cursor: pointer; 
    font-weight: bold;
    border: none;
    height: 50px;
    border-radius: 10px 0 10px 0;
    font-size: 1rem;
}
button.add:hover{
    background: rgba(0, 128, 0, 0.616);
    transition: linear .3s;
}
main{
    display: flex;
    flex-flow: wrap row;
    width: 90%;
    margin: auto auto;
    padding-top: 40px;
}
.item{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 50px;
    border-bottom: rgba(0, 0, 0, 0.178) 2px solid;
    width: 100%;
    box-shadow: 0 0 20px #ccc;
    margin-bottom: 2%;
    cursor: pointer;
}
.item .clicado{
    background-color: #d4f6d9;
}

.item.clicado .itemNome{
    text-decoration: line-through;
    color: gray;
}

.itemIcone{
    flex: 20%;
    text-align: center;
    font-size: 2rem;
    
}
.itemNome{
    flex: 55%;
    font-size: 20px;
    font-weight: bold;


}
.itemBotao{
    flex: 25%;

}
.Delete{
    background: transparent;
    color: rgb(0, 0, 0);
    border: none;
    padding: 10px;
    height: 45px;
    width: 50%;
    border-radius: 5px 0 5px  0;
    font-size: 25px;
    cursor: pointer;

    
}
.Delete:hover{
    width: 55%;
    height: 50px;
    
    font-size: 30px;
    transition: linear .3s;
}
.mdi-check-circle{
    color: green;
}

