/*
 * IEU Portal - Estilos base
 * Reset minimo y elementos HTML globales.
 */

* {
    box-sizing:border-box
}

html {
    scroll-behavior:smooth
}

body {
    margin:0;
    font-family:Inter,system-ui,sans-serif;
    color:var(--ink);
    background:#fff
}

a {
    text-decoration:none;
    color:inherit
}

img {
    max-width:100%;
    display:block
}
