:root{
    --bs-blue:#037bc0;
    --bs-green:#8cbc00;
}
html{
    font-size: 65.5%;
}
h1,h2,h3{
    font-family:"Playfair", serif;
}
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;
    } 
}
body{
    font-family: "Raleway", sans-serif;
    font-size: 1.6rem;
    line-height: 2;
}
h1{
    font-size: 3.8rem;
}
@media(min-width: 768px){
    h1{
        font-size: 5rem;
    } 
}
.text-primary{
    color: var(--bs-blue);
}
.nombre-sitio{
    color: var(--bs-blue);
}
.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;
    }
}
.bg-primary,
.btn-primary{
    background-color: var(--bs-blue)!important;
}
.btn-success{
    background-color: var(--bs-green);
}
.producto img{

}
@media(min-width: 768px){
    .producto img{
        height: 43rem;
        width: 100%;
        object-fit: cover;
    }
}
.categoria img{
    transition-property: transform;
    transition-duration: 300ms;
}
.categoria img:hover{
    transform: scale(1.2);
}
.form-control{
    padding: 1rem;
    font-size: 1.6rem;
}