body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #fff8dc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
  }
  h1 {
    color: #ff69b4;
  }
  .generator {
    background-color: #fce4ec;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
  }
  button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background-color: #ff69b4;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 1rem;
  }
  button:hover {
    background-color: #ff85c1;
  }
  .name-output {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    color: #4b0082;
  }
  .cat-image {
    margin-top: 2rem;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  