.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f5e8c7;
    text-align: center;
    font-family: Arial, sans-serif;
  }
  
  .text-content h1 {
    color: #ff0000;
    font-size: 24px;
    margin: 0;
  }
  
  .text-content p {
    color: #ff0000;
    font-size: 18px;
    margin: 10px 0;
  }
  
  .cat-image {
    margin: 20px 0;
  }
  
  .buttons {
    display: flex;
    gap: 10px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .red {
    background-color: #ff0000;
    color: white;
  }
  
  .green {
    background-color: #00ff00;
    color: white;
  }