figcaption {
    font-size: 12px;
    text-align: center;
}
#me {
    margin: 0 auto;
    width: 30%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-out;
}

#me:hover{
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

/* Fun fact section styling */
.fun-facts {
    display: inline-block;
    background-color: #fff8fc;
    border: 2px dashed #f493c8;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    list-style: none;
  }
  .fun-facts li::before {
    content: "🌸"; /* You can use ✨ 🐾 💅 🎀 or any emoji */
    margin-right: 0.5rem;
  }

