@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
   
}

h1 {
   /* color: chocolate; */
   color: chocolate;
}

body{
 background-color: aliceblue;
}

.card {
    width: 200px;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
}

.card img {
    width: 150px;
    height: 150px;
}

.card h5{
    width: 200px;
    height: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding: 15px;
    overflow: hidden;
    /* Oculta el texto que exceda el ancho */
    text-overflow: ellipsis;
}

.card-text {

    width: 200px;
    /* Ajusta el ancho según sea necesario */
    height: auto;
    padding: 5px;
   
}

.price {
    width: 200px;
    text-align: right;
    font-size: 16px;
    font-weight: bold;
    padding: 15px;
}