/* Style for the cat fact */
#cat-fact {
    font-family: 'Autour one', sans-serif; 
    font-size: 14px; 
    font-weight: bold; 
    color: #A64182; 
    background-color: #F2CEE2; 
    padding: 10px 20px; 
    border-radius: 8px; 
    margin-top: 20px; 
    text-align: center; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
    max-width: 90%; 
    margin-left: auto; 
    margin-right: auto; 
  }
  
  #cat-fact:hover {
    /* Add hover effect to enhance interactivity */
    background-color: #D98FCC; 
    color: #fff; 
    transform: scale(1.05); 
    transition: background-color 0.3s, transform 0.3s; 
  }
  