body {
    font-family: 'Raleway', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .container {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
  }
  
  .cat-image {
    width: 200px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  #get-fact-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #f08080;
    color: #fff;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.2s ease-in-out;
  }
  
  #get-fact-button:hover {
    background-color: #d74b30;
  }
  
  #cat-fact {
    font-style: italic;
    font-size: 1.2em;
    color: #333;
    line-height: 1.5;
  }
  