/* Homepage styling */
  
.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

.profile-container {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 2rem;
}

.social-links {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  color: #007acc;
    text-decoration: none;
  margin: 0 0.5rem;
}

.social-links a:hover {
  text-decoration: underline;
}