/* Fondo de la página con imagen */
body {
  background-image: url("lace strings.jpg"); /* aquí va el nombre de tu imagen */
  background-size: cover; /* hace que cubra toda la pantalla */
  background-repeat: no-repeat; /* evita que se repita */
  background-attachment: fixed; /* hace que el fondo quede fijo al hacer scroll */
  font-family: Arial, sans-serif;
  margin: 20px;
}


/* Títulos grandes */
h1 {
  color: darkblue;
  text-align: center;
}

/* Párrafos */
p {
  font-size: 18px;
  color: black;
}

/* Imágenes */
img {
  display: block;
  margin: 20px auto;
  max-width: 300px;
}

/* Enlaces */
a {
  color: darkred;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}
