* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;  
   
}

.product-gallery {
    display: flex;
    padding: 50px 0px 120px 50px;  

    align-items: center;
    justify-content: left;
    gap: 20px;
    flex-wrap: wrap;  
    
    
}

.product-card {
    
   
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    transition: transform 0.2s;
    position: relative;
    cursor: pointer;
    img{
        padding: 15px;
    }
    p{
        color: black;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        padding: 10px;
       
    }
    .linea{
       position: relative;
        color: rgb(0, 0, 0);
    }
  
   
}

.product-card:hover {
    transform: scale(1.05);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-title {
    font-size: 1.5em;
    margin: 10px;
    color: black;
    text-align: center;
}

.product-description {
    font-size: 1em;
    padding: 0 10px 10px;
    color: #555;
}

.product-price {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: rgb(39, 38, 38);
    font-size: 40px;
   left: 25px;
    position: relative;
    top: 85%;
    
}
