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

.dancing-script-<uniquifier> {
  font-family: 'Dancing Script', cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

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

<style>
  .my-title {
    font-family: 'Fleur De Leah', cursive; 
    font-size: 5em; /* Optional: Makes the text bigger */
    color: #0A3463; /* Optional: Sets color */
  }
</style>
<center> 
  <strong> 
    <em class="my-title">Welcome Inside My Mind</em> 
  </strong> 
</center>

body {
  background-color: black;
  color: white;
  font-family: 'Dancing Script', cursive;
}