/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

 .style {
    font-family: "Times New Roman";
}

body {
    /* Ruta de la imagen (puede ser local o URL absoluta) */
    background-image: url("https://i.pinimg.com/736x/30/13/81/30138123b49a56fc4015dd30b45b89a1.jpg");

    /* Ajustes recomendados */
    background-size: cover;           /* La imagen cubre toda la pantalla */
    background-repeat: no-repeat;     /* No se repite */
    background-position: center;      /* Centrada */
    background-attachment: fixed;     /* Fija al hacer scroll */
}