/* estilos.css */

body {
    font-family: Arial, sans-serif;
    width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
}
/* Creamos el pseudo-elemento que contendrá el fondo desenfocado */
body::before {
    content: '';
    position: fixed;
    /* Ocupa toda la pantalla, independientemente del scroll */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('../img/fondo.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(8px);
    /* Nivel de desenfoque */
    -webkit-filter: blur(8px);
    /* Compatibilidad con Safari */
    z-index: -1;
    /* Lo posicionamos detrás de todo el contenido */
    transform: scale(1.1);
    /* Escala ligeramente para evitar bordes borrosos */
}

.info {
    color: green;
    line-height: 1.5;
}

.advertencia {
    color: red;
    font-weight: bold;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: #0066cc;
    font-weight: bold;
}

a img {
    vertical-align: middle;
    margin-left: 5px;
    width: 16px; /* tamaño ajustable */
    height: 16px;
}

b {
    font-size: 1.2em;
}
