body {
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

img .logo{
    margin-top: 100px;
    height: auto;
}

h3 {
    margin-top: 50px;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 5px;
}

.card{
    border: 0px solid green;
    border-radius: 10px;
    background-color: #f8f9fa;
}

.card .card-img-top{
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px;
    padding-top: 20px;
    transition: transform 0.5s;
}

.card .card-img-top:hover{
    transform: scale(1.05);
}

.precio{
    font-weight: 600;
    color: green;
    font-size: 1.5rem;
}

.row {
    display: flex;
    row-gap: 20px;
}

img {
    border-radius: 10px;
}

@media (max-width: 1200px) {
    img {
        max-width: 20%;
    }
}

@media (max-width: 992px) {
    img {
        max-width: 25%;
    }
}

@media (max-width: 768px) {
    img {
        max-width: 30%;
    }
}

@media (max-width: 576px) {
    img {
        max-width: 50%;
    }
}

@media (min-width: 1201px) {
    img {
        max-width: 15%;
    }
}

