/* 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." */
#bg {
    /* {Link: Ver ejemplo en YouTube https://www.youtube.com/watch?v=sJ28OfSX5dM} */
    background-size: cover; /* Ajusta la imagen al tamaño de la pantalla */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    background-attachment: fixed; /* Mantiene la imagen fija al hacer scroll */
    height: 100vh; /* Altura del 100% de la ventana */
    width: 100%; /* Ancho completo */
}

body {
  text-align: center;
  background-image: url('https://i.pinimg.com/736x/4c/dc/ce/4cdcce59cdd9b5a3329f150d9de383b9.jpg');/*#ede3e9;*/
  color: black;
  font-family: Verdana;
}

