
body {
  font-family: Arial, sans-serif;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background-color: #f7f7f7;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
}

.profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 100px;
  object-fit: cover;
  border: 4px solid #24292e;
}

.intro-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #24292e;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #555;
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .profile-pic {
    width: 150px;
    height: 150px;
  }
}
/* Reset default margins/padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #24292e;
  padding: 1rem 2rem;
  color: white;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links li a:hover {
  text-decoration: underline;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Mobile View */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    right: 0;
    background-color: #24292e;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* About Section */
.about {
  background-color: #ffffff;
  padding: 4rem 2rem;
  color: #333;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #24292e;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}
