*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

h1.title{
    background-color: cornflowerblue;
    color: beige;
    padding: 20px;
    
}

form{
    margin: 10px;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 20px;
    display: flex;
}

form input{
    padding: 5px;
    border: none;
    outline: none;
    flex: 1;
}

form button{
    padding: 5px 10px;
    background-color:cornflowerblue;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
form button:hover{
    background-color: darkblue;
}

div.lista{
    margin-top: 10px;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

div.item{
    text-align: center;
    padding: 10px;
    width: 200px;
    border: 2px solid cornflowerblue;
    border-radius:5px;
    margin: 5px;
}

div.item img{
    width: 100%;
}

div.item:hover{
    background-color: cornflowerblue ;
    cursor: pointer;
}