

#productos{
	text-align:center;
}


#productos .contenedor{
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
}


#productos article{
	margin:40px;
}



#productos img{
	max-width:300px;
    box-shadow: 2px 2px 15px #666;
    border-radius: 5px;
}

.llamar img{
    width: 120px;
}
   

#inputBusqueda {
    width: 80%;
    padding: 10px;
    margin-top: 10px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.product {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 10px;
    padding: 10px;
    width: 200px;
    text-align: center;
    text-decoration: none;
    color: #333;
}

.product img {
    max-width: 100%;
    height: auto;
}

.search-results {
    list-style: none;
    padding: 0;
}

.result-item {
    padding: 5px;
    border-bottom: 1px solid #ddd;
}
 


@media (max-width:1024px){
	
    
    
#productos img{
	width:100%;
	max-width:800px;
}
    
#productos h1{
    font-size: 55px;
} 


}