@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
    font-family: "Raleway", sans-serif;
    margin: 0;
    padding: 10px;    
    width: 100%;
    height: 100vh;

}



.ejercicio {
    margin-bottom: 10px;
    border: 1px solid #d4d4d4;
    padding: 7px;
}

.miniatura {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-right: 10px;
  }
  
  .ejercicio h3 {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
  }

.instrucciones {    
    color: #313131;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    text-align: justify;
}

.demostracion {
    font-weight: 500;
    color: #2e2e2e; /* Letra blanca */
    text-decoration: none;
    background-color: #eeeeee; /* Fondo gris oscuro */
    border-radius: 3px; /* Redondea las esquinas */
    padding: 5px 10px; /* Agrega un poco de padding */
    cursor: pointer;
    border-width: 1px;
    object-fit: cover;
  }

  .modal-body img {
    width: 100%;
  }

  .demostracion:hover{
    background-color: #c2c2c2; /* Fondo gris oscuro */
  }

@media (max-width: 768px) {
    .dia {
        padding: 10px;
    }
    
    .ejercicio {
        margin-bottom: 10px;
    }
    
}