@charset "UTF-8";

/* Importing Parisienne font from Google Fonts */
url(https://fonts.googleapis.com/css2?family=Parisienne&display=swap);
/* Setting a turquoise background for the profile */
body {
  background-color:#40E0D0;
/* Turquoise color */
}

/* Applying Parisienne font and styling to all text */
body,h1,h2,h3,p {
  font-family:'Parisienne',cursive;
/* Parisienne font */
  color:#008000;
/* Turquoise text color */
  text-shadow:2px 2px 4px rgba(0,0,0,0.5);
/* Text shadow for depth */
}

/* Styling headers to stand out */
h1,h2,h3 {
  font-size:48px;
/* Adjust the size as needed */
  margin-bottom:20px;
}

/* Additional styling for paragraphs */
p {
  font-size:24px;
/* Adjust the size as needed */
  line-height:1.5;
}