/* Ensure html and body take up the full viewport */
html, body {
  height: 100%;
  margin: 0;
}

/* Full-screen background on the body */
body {
  /* Replace with the correct path to your medusa.ong image */
  background-image: url("../img/medusa.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  /* Optional: make the background fixed during scroll */
  background-attachment: fixed;

  /* Optional: a fallback background color while the image loads */
  background-color: #000;
}