:root {
    --bs-blue: #037BC0;
    --bs-green: #8cbc00;
}
html {
    font-size: 62.5%;  /* 1 rem = 10px **/
}
body {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6rem;
    line-height: 2;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

h1 {
    font-size: 3.8rem;
}
@media (min-width: 768px) {
    h1 {
        font-size: 5rem;
    }
}

h2 {
    font-size: 3.2rem;
}
@media (min-width: 768px) {
    h2 {
        font-size: 4rem;
    }
}
h3 {
    font-size: 2.4rem;
}
@media (min-width: 768px) {
    h3 {
        font-size: 3rem;
    }
}

/** Reescribir colores */
.text-primary,
.site-name{
    color: var(--bs-blue)!important;
}

.bg-primary,
.btn-primary { 
    background-color: var(--bs-blue)!important;
}
.btn-success {
    background-color: var(--bs-green)!important;
}

.hero{
    background-image: url(../img/principal.jpg);
    height: 25rem;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
@media (min-width: 768px){
    .hero{height: 55rem;
    }
}

/** Productos */
/* quiero cortar la imagen a un determinado rango, limitando su altura */
@media (min-width:768px) {
    .product img {
        height: 45rem;
        width: 100%;
        object-fit: cover;
    }
}

.category img {
    transition-property: transform;
    transition-duration: 300ms;
}
.category img:hover {
    transform: scale(1.2);
}

.gallery li:not(:last-of-type) {
    margin-bottom: 1rem;
}