@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

*{  font-family: 'Open Sans', sans-serif;   }

html, body{
    height: 100% !important;
    width: 100% !important;
    background: white !important;
}

hr{
    border: 2px solid #ccc !important; 
    background-color: #ccc !important;
}

a{  
    text-decoration: none;
    color: inherit !important;
}

.cursor{    cursor: pointer !important; }
.borde{ border: 1px solid red !important;}

.imagen-gris {
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.imagen-gris:hover {
    filter: grayscale(0%);
}