/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* Add background image */
    background-image: url('Tabby Cat Background.png'); /* Replace with your image file path */
    background-size: cover; /* Ensures the image covers the entire background */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
  }
  
  .profile-container {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
  }
  
  h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
  }
  
  .profile-pic {
    width: 250px;
    height: 250px;
    border-radius: 0%;
    border: 4px solid #ffcc00;
    margin-bottom: 15px;
  }
  
  .profile-name {
    font-size: 24px;
    color: #333;
    margin: 10px 0;
  }
  
  .profile-details {
    text-align: left;
    margin-top: 20px;
  }
  
  .profile-details h3 {
    font-size: 18px;
    color: #555;
    margin: 10px 0 5px;
  }
  
  .profile-details p {
    font-size: 16px;
    color: #777;
    margin: 0 0 15px;
  }