/* 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-image: url("Images/Texturelabs_Sky_140M.jpg");
  color: black;
  font-family:Helvetica;
  text-align: center
}
    h1 {
      font-size: 60pt;
      font-family: "Fleur De Leah", cursive;
      line-height: 1.5em; /* Adjusts the height of the line box */
      margin-top: 20px; /* Adds space above the h1 */
      margin-bottom: 10px; 
    }
    
    h2 {
      font-size: 20pt;
      font-family:"Poiret One", sans-serif;
      text-align: center
}


    }
   
    p {
      font-size: 18pt;
      font-family: 'Times New Roman', Times, serif;
    }


}
.fleur-de-leah-regular {
  font-family: "Fleur De Leah", cursive;
  font-weight: 400;
  font-style: normal;

  
} 
  .poiret-one-regular {
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
