
/* Usando Google Fonts (Roboto como ejemplo) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* Aplicar la fuente a toda la página */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html, body {
    font-family: 'Roboto', sans-serif;
    height: 100%;
}
main {
    background: linear-gradient(135deg, #f06292, #9c27b0);
}
