body{
    background-image: url(../img/cave-story.webp);
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
   margin: 0;
    font-family: sans-serif;
    color: black;
}

/* Sfondo fisso */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/cave-story.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2; /* rimane sotto sia al testo che all’overlay */
}

/* Overlay per migliorare la leggibilità */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.0); /* nero trasparente al 40% */
  z-index: -1; /* tra lo sfondo e il contenuto */
}



/* Utils */
.container-pers{
    max-width: 1080px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.75); 
    min-height: 100vh;
}

/* Footer */
footer{
    background-color: pink;
}