/* 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." */

body {
  background-color: #F0FFF3;
  color: #f505d0;
  font-family: Verdana;
}

body {
    background-image: url('fondo1.jpg'); /* Cambia por el nombre y ruta de tu archivo */
    background-size: 600px; /* Ajusta la imagen para que cubra todo el fondo */
    background-repeat: repeat; /* Evita que la imagen se repita */
    background-position: center; /* Centra la imagen */