@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,900&display=swap');
*{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Roboto', sans-serif;
}
/* Header  */
header{
    width: 100%;
    text-align: center;
}

header nav{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 20px;
}

/* Form  */
header nav form{
    width: 100%;
}
header nav form input{
    padding: 10px;
    width: 50%;
    margin: 0px auto;
    border-radius: 4px;
    border:none;
    background: #faf9f9;
    box-shadow: inset 0px 0px 3px  rgba(0,0,0,.2);
    outline: none;
    transition: all .4s;
    font-family: 'Roboto', sans-serif;
}
header nav form input:focus{
    box-shadow: inset 0px 0px 5px  rgba(0,0,0,.3);
}

/* Products  */
header nav form #response{
    width: 100%;
}
header nav form #response li{
    width: 50%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}
header nav form #response li .img{
    width: 80px;
}
header nav form #response li img{
    width: 100%;
}

/* SINGLE RESULT  */

.single{ 
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}
.single .product{
    width: 180px; 
    text-align: center;
    margin: 5px 1px;
    /* background: #eeeeee; */
    padding: 2px;
    border: 1px solid #000;
}
.single .product .img{
    width: 100%;
    margin:0px auto;
}
.single .product img{
    width: 100%;
}
.single .product .title{
    color: #424242;
}
.single .product .price{
    font-size: 10pt;
    width: 70%;
    margin: auto;
    text-align: left;

}
/* Footer  */
footer{
    text-align: center;
    width: 100%;
    font-weight: 900;
    color:#d3d3d3;
}
