/* 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 {color: #decb92;
  font-family: verdana 
 }

 /* unvisited link */
    a:link {
        color: #decb92;
    }

    /* visited link */
    a:visited {
        color: white;
    }

    /* mouse over link */
    a:hover {
        color: red;
        text-decoration: underline; /* Optional: adds an underline on hover */
    }

    /* selected link */
    a:active {
        color: red;
    }

h1 { 
  color: #decb92;
  text-align: center;
}

p {
  text-align: center;
}

body {background-color: #C82909;
text-align: center;/* Use color name, hex, or RGB */
}
    
header {
  text-align: center;
}


html, body { /* the following is for the bg
  height: 100%; /* Ensures full height is considered */
  margin: 0;   /* Removes default browser margins */
  padding: 0;
}

body {
  background-image: url('https://cirque-de-fleur.neocities.org/circus%20site%20bakground.PNG'); /* Replace with your image path/URL */
  background-repeat: no-repeat;            /* Prevents image tiling */
  background-position: center center;      /* Centers the image */
  background-attachment: fixed;            /* Keeps the image in place during scroll */
  background-size: cover;                  /* Scales the image to cover the entire screen while maintaining aspect ratio */
}

div.container {text-align: center;}

ul.myUL 
  {display: inline-block;
  text-align: left;}
