/* 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 {
  font-family: "Courier New";
  background-image: url("/backcolor.png"); /* Specify the image path */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    background-size: cover; /* Scale the image to cover the entire container */
    background-attachment: fixed; /* Fix the image in place while scrolling */
    background-color: #323353; /* Fallback color if the image can't load */
}

p { text-align: center; font-size: 30px; margin-left: 20px;}

a { font-size: 40px; margin-left: 60px; margin-bottom: 60px;}

.titlehead {
  font-size: 70px; color: #ffff00; text-align: Center; ;
}

.fullpage { width: 80%; margin-left: 10%; margin-right: 10%; margin-top: 2%; display: block;}

div { width: 80%; margin-left:10%; margin-right: 10%; display: block; font-family: "Courier New";
  background-image: url("/backcolorwhite.png"); /* Specify the image path */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    background-size: cover; /* Scale the image to cover the entire container */
    background-attachment: fixed ; /* Fix the image in place while scrolling */
    background-color: #ffffff; /* Fallback color if the image can't load */
}