/*
 * Updated and Modernized Stylesheet
 *
 * This version replaces deprecated code with current best practices.
 */



body {
  background-image: url('../files/bg-enter.jpg'); /* Replace with your image path */
  background-size: cover; /* Scales the image to cover the entire element, cropping if necessary */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-position: center center; /* Centers the image horizontally and vertically */
  background-attachment: fixed; /* Keeps the background image fixed while content scrolls */
  animation: fadeIn 4s forwards;
}


