body {
    background-color: #555555;
    color: white;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 1rem;
  }
  
  .profile-img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .info {
    display: flex;
    flex-direction: column;
    gap: 0rem;
  }

  h1 {
  font-size: 3rem;
  margin: 0;
  }

  p {
    font-size: 1.5rem;
  }

  .icons {
    margin-top: 0.5rem;
  }
  
  .icons a {
    margin-right: 1rem;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .icons a:hover {
  color: #ccc;
}
  