/* 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." */

body {
  background-color: white;
  color: white;
  font-family: "Georgia" ,serif;
}
body {
  background-image: url('https://file.garden/alsOO_pKXGPIVFRk/IMG_3503.jpeg'); /* Replace with your actual file name */
  background-size: cover; /* Stretches image to fit the whole screen */
  background-repeat: no-repeat; /* Stops the image from tiling */
  background-attachment: fixed; /* Keeps the background still when scrolling */
  background-position: center; /* Centers the image */
}
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
}

#wrapper {
  width: 800px; /* Adjust this to your preferred website width */
  margin: auto;
  text-align: center; /* Centers text and inline elements */
}

p, h1, h2, h3, h4, h5, h6, span, li{
    background-color: white;
    color: black; /* Ensures your text stays visible on the white highlight */
    padding: 2px 4px; /* Optional: adds a neat spacing around the highlighted words */
    display: flex; /* Forces the highlight to wrap tightly around the text */
    
}
#counter { 
  color: white;
  font-family: "Georgia" ,serif;
  background-color: "white";
}


  
