html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    /* Color de fondo por si la imagen no carga */
    background-color: #E6F0FA;
    /* Imagen de fondo */
    background-image: url('/img/fondoazul.jpg'); /* Cambia la ruta según tu imagen */
    /* Cubrir todo el fondo */
    background-size: cover;
    /* Que no se repita */
    background-repeat: no-repeat;
    /* Mantener fija al hacer scroll */
    background-attachment: fixed;
    /* Centrar la imagen */
    background-position: center center;
    /* superponer un filtro semitransparente si quieres atenuarla */
    background-color: rgba(230, 240, 250, 0.5); 
}

/* Footer */
footer a {
    transition: all 0.3s ease;
}

    footer a:hover {
        transform: scale(1.1);
        text-decoration: none;
    }

footer .ratio iframe {
    border-radius: 0.5rem;
}