/* style.css */

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
  }
  
  .profile {
    margin-bottom: 20px;
  }
  
  .profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #333;
  }
  
  h1 {
    margin: 10px 0;
    font-size: 24px;
  }
  
  .links {
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: 400px;
  }
  
  .links a {
    text-decoration: none;
    color: white;
    background-color: #333;
    padding: 15px;
    margin: 5px 0;
    border-radius: 8px;
    transition: background 0.3s;
  }
  
  .links a:hover {
    background-color: #555;
  }
  
  @media (max-width: 500px) {
    .links a {
      padding: 12px;
    }
  }
  
  .contact-icons {
    margin-top: 15px;
  }
  
  .contact-icons a {
    margin: 0 10px;
    color: #333;
    font-size: 24px;
    transition: color 0.3s;
  }
  
  .contact-icons a:hover {
    color: #555;
  }
  