header {
  margin-top: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 80px);
}

.home-container {
  display: flex;
  max-width: 1000px;
  width: 90%;
  align-items: center;
  gap: 40px;
}

.text-content {
  flex: 1;
}
.text-content h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}
.text-content h2 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 5px;
}
.text-content p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.image-content {
  flex: 0.8;
  text-align: right;
}

.profile-pic {
  width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.social-links {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
  margin-left: 0;
}
.social-links a {
  font-size: 1.5em;
  color: #6f42c1;
  transition: color 0.3s;
  text-decoration: none;
}
.social-links a:hover {
  color: #007acc;
}