body {
margin: 60px;
background-color: #fc8bd6;
font-family: Arial, sans-serif;
text-align: center;
text-shadow: 2px 2px 4px #f8d5f4eb;
color: #333333;
}

p {
  margin: 10px 0;
  padding: 1.0em; /* 30px */
  font-size: 19px;
  line-height: 15px;
  font-weight: normal;
  color: #333333;
  border: 0px solid #f7d9ed; /* Sets a 5px solid light pink border */
}

h1 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 70px;
  line-height: 100px;
  font-weight: bold;
  text-shadow: 2px 2px 4px #f8d5f4eb;
  margin: 80px;
}

h3 {
  font-size: 25px;
  line-height: 75px;
  font-weight: bold;
  text-decoration: underline; /* Underlines the text */
  margin: 80px;
  text-shadow: 2px 2px 4px #f8d5f4eb;
}

h4 {
  font-size: 20px;
  line-height: 75px;
  font-weight: bold;
  text-decoration: underline; /* Underlines the text */
  margin: 80px;
}

ul {
  font-size: 20px;
  line-height: 30px;
  font-weight: normal;
  border: none;
  margin-left: 100px;
  text-shadow: 2px 2px 4px #f8d5f4eb;
  text-align: left;
}

li {
  font-size: 25px;
  line-height: 26px;
  font-weight: normal;
  color: #781256;
  border: none;
  text-shadow: 2px 2px 4px #f8d5f4eb;;
  margin: 20px 0;
}

nav {
  font-size: 25px;
  line-height: 50px;
  font-weight: normal;
  margin-bottom: 50px;
  color: #781256;
  border: 0.155em solid #e378c0; /* Sets a 5px solid light pink border */
  border-radius: 0.625em; /* 10px rounded corners */
  text-shadow: 2px 2px 4px #f8d5f4eb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */ 
}
footer {
  font-size: 18px;
  line-height: 19px;
  font-weight: normal;
  color: #781256;
  background-color: #ffdef4; /* Sets the background color */
  border: 0.225em solid #781256; /* Sets a 5px solid light pink border */
 border-radius: 8px; /* Optional: Add rounded corners */
  margin-top: 50px;
  text-shadow: 2px 2px 4px #f8d5f4eb;
  margin: 200px;
}

section {
  font-size: 20px;
  line-height: 21px;
  font-weight: normal;
  color: #781256;
  border: 0px solid #f7d9ed; /* Sets a 5px solid light pink border */
  margin-top: 50px;
  text-shadow: 2px 2px 4px #f8d5f4eb;
}
a {
    color: #781256; /* purple color */
    font-size: 20px;
    text-shadow: 2px 2px 4px #f8d5f4eb;
    transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s; /* smooth transition */
}
a:hover {
    text-decoration: underline; /* underline on hover */
    background-color: #ff44c1; /* purple on hover */
    color: white; /* white text on hover */
    transform: scale(1.05); /* slightly enlarge on hover */
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2); /* stronger shadow on hover */
    transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s; /* smooth transition */
    text-shadow: 2px 2px 4px #f8d5f4eb;
    border-radius: 8px; /* Optional: Add rounded corners */
    border-style: dashed;
}


.card {
    max-width: 1000px; /* Or a different width */
    margin: 0 auto; /* Centers the card horizontally */
    padding: 1em; /* A value between 16px and 48px */
    background-color: #ffdef4; /* Choose a background-color */
    border: 4px solid #781256; /* Add a border */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
} 
.card h2 {
  font-size: 35px;
  line-height: 10px;
  font-weight: bold;
  color: #333333;
  margin: 80px;
  text-shadow: 2px 2px 4px #f8d5f4eb;;
}
.card p {
    color: black ; /* Choose a text color */
    font-size: 25px; /* Choose a font-size */
    line-height: 1.5; /* Improve readability */
    padding: 30px;
    margin: 10px 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #ffdef4; /* Choose a background-color */
    border: 4px solid #781256; /* Add a border */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

