:root{
    --bs-blue:#037BC0;
    --bs-red: #eb7d16;
    --bs-green:rgba(62, 64, 61,0.6);
}

html{
    font-size: 62.5%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body{
    font-family: 'Raleway', sans-serif;
    font-size: 1.6rem;
    line-height: 2;
    
    
  
}
.fondo{
    background-image: url(../img/fondopagina.jpg);
    opacity: 90%;
    background-repeat:no-repeat;
    background-size: cover;
}
.fondo2{
    background-image: url(../img/fondopagina2.jpg);
    opacity: 90%;
    background-repeat:no-repeat;
    background-size: cover;
}
.fondobody{
    background-image: linear-gradient(to bottom, #f7efeb 0%, #e8e5e1 100%);
}


h1,h2,h3 {

    font-family: 'Anton', sans-serif;
}

h1{
    font-size: 3.8rem;
}

@media(min-width: 768px){

    h1{
        font-size: 8rem;
        font-weight: 800;
    }
}


h2{
    font-size: 3.2rem;
}

@media(min-width: 768px){

    h2{
        font-size: 4rem;
    }
}

h3{
    font-size: 2.8rem;
}

@media(min-width: 768px){
    h3{
        font-size: 3rem;
    }
}

/*ejemplo de como modificar la especificidad de colores de bootstrap*/
.text-primary{
    color: var(--bs-blue) !important;
}

.text-danger{
    color: var(--bs-red) !important;
}

.bg-danger, .btn-danger{
    background-color: var(--bs-red) !important;
}
.btn-success{

    background-color: var(--bs-green);
}


#navegacion a:hover{
    transform: scale(1.2);
    background-color: #eb7d16;
    border-radius: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}


/* productos*/

.producto img{
    display: block;
    margin: auto;
     height: 35rem;
     width: 50%;
     object-fit: contain;
}

@media(min-width:768px){
    .producto img{
       display: block;
       margin: auto;
        height: 40rem;
        width: 50%;
        object-fit: contain;
        

    }
}

.fondopr{
    background-image: url(../img/fondoProducto.jpg);
    background-position: center;
    background-size: cover;
    color: black;
    
}

.fondopr2{
    background-image: url(../img/fondoProducto2.jpg);
    background-size: cover;
    color: black;
}

@media(max-width:768px){
   .letra h4{
        font-size: 3rem !important;
   }
}


.marcas{
    margin-bottom: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    column-gap: 2rem;
    
    
}
.marcas div{
    width: 100%;
    height: 100%;
}
.marcas img{
   width: 100%;
   height: 100%;
   border-radius: 3rem;
   transition-property: transform;
   transition-duration: 0.3s;
    
}
.marcas img:hover{
    transform: scale(1.2);
    
}

.form-control {
    padding: 1rem;
    font-size: 1.5rem;
}

.form-label{
    font-size: 2rem;
    
    margin-bottom: 0;
}



/* practicando estilos para ocultar tabla */

.invisible{
    display: none;
}

.visible{
   display: table;
}

.bg-rojo{
    background-color: red;
    border-radius: 50%;
}