* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body {
    background-color: #b3e9ff;
    color: #333;
    display: flex;
    justify-content: center;
    padding: 2rem;
  }
  
  .container {
    width: 100%;
    max-width: 500px;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .profile img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
  }
  
  .profile h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .profile p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
  }
  
  .links a {
    display: block;
    background-color: #0073e6;
    color: white;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .links a:hover {
    background-color: #005bb5;
  }
  
