body {
  margin: 0;
  font-family: sans-serif;
  background: url('background.jpeg') no-repeat center center fixed;
  background-size: cover;
  color: #1f2937;
}
header, footer {
  text-align: center;
  padding: 1.5rem;
}
header h1 {
  font-family: 'Pacifico', cursive;
  font-size: 2.5rem;
  color: #db2777;
  margin-bottom: 0.25rem;
}

header p {
  font-family: 'Baloo 2', cursive;
  font-size: 1.25rem;
  color: #db2777;
  margin: 0;
}
section {
  max-width: 700px;
  margin: 1rem auto;
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.9); /* White with slight transparency */
}
h2 {
  color: #db2777;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
ul {
  padding-left: 1.25rem;
}
.contact div {
  margin-bottom: 0.5rem;
}
.contact a {
  color: #2563eb;
  text-decoration: none;
  margin-right: 1rem;
}
/* .photo {
  width: 100px;
  height: 100px;
  border-radius: 9999px;
  overflow: hidden;
  margin: auto;
  margin-bottom: 1rem;
} */
 .photo {
  width: 160px;
  height: 160px;
  border-radius: 9999px;
  overflow: hidden;
  border: 5px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: auto;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
  background: white;
}
.photo img {
  width: 100%;
  height: auto;
}
form input, form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
}
form button {
  background-color: #ec4899;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}
form button:hover {
  background-color: #db2777;
}
