/* ==== style.css  ==== */

/* Fondo de pantalla completa para toda la página */
body{
  /* Cambia la ruta a la de tu imagen subida a Neocities */
  background: url("default_149751diavolos.jpg") no-repeat center center fixed;
  /* Ajusta la imagen para que siempre cubra toda la ventana */
  background-size: cover;

  /* Color de respaldo mientras carga */
  background-color:#000;

  /* Opcionales para quitar márgenes y asegurar altura completa */
  margin:0;
  min-height:100vh;
  
}
  
  .corner {
  position: fixed;
  width: 150px;       /* Change the size as needed */
  height: auto;
  z-index: 9999;     /* Make sure the image stays on top */
  
  }
  
  .bottom-right {
  bottom: 0px;
  right: 0px;
  
}

.bottom-left {
  bottom: 0px;
  left: 0px;
}
