body {
    font-family: 'Arial', sans-serif;
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  
  .profile-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 300px;
  }
  
  .profile-card img.profile-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }
  
  .profile-card h1 {
    font-size: 1.5rem;
    color: #333;
    margin: 10px 0;
  }
  
  .profile-card h3 {
    font-size: 1.1rem;
    color: #555;
    margin: 5px 0 15px;
  }
  
  .profile-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0;
  }
  
  .profile-card .social-links a {
    text-decoration: none;
    color: #007bff;
    margin: 0 5px;
    font-size: 0.9rem;
  }
  
  .profile-card .social-links a:hover {
    text-decoration: underline;
  }
  
  .profile-card .utc-time {
    font-size: 0.8rem;
    color: #888;
    margin-top: 10px;
  }
  