body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom right, #2196f3, #e91e63);
  color: #fff;
}
.header,
.footer,
.contact-me {
  text-align: center;
  padding: 30px 20px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 15px 30px;
  color: white;
}
.navbar h1 a {
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
}
.nav-links li {
  display: inline;
  margin: 0 12px;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.intro-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin: 30px auto;
  width: 90%;
  backdrop-filter: blur(6px);
}
.typing-text {
  max-width: 500px;
  line-height: 1.8;
}
.typing-text span {
  font-weight: bold;
  color: #ffd54f;
}
.picture {
  width: 220px;
  border-radius: 50%;
  border: 4px solid #ffd54f;
}
.programming-section {
  text-align: center;
  padding: 50px 0;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 30px auto;
  width: 90%;
  border-radius: 10px;
  backdrop-filter: blur(6px);
}
.carousel {
  margin: 30px auto;
  width: 85%;
}
.carousel img {
  height: 80px;
  width: auto;
  margin: 10px;
  transition: transform 0.3s ease;
}
.carousel img:hover {
  transform: scale(1.1);
}
.social-links a {
  margin: 0 15px;
  font-size: 1.5rem;
  color: #ffd54f;
  transition: color 0.3s ease;
  text-decoration: none;
  
}
.social-links a:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    

  }
  .nav-links {
    padding-top: 10px;
  }
  .nav-links li {
    display: block;
    margin: 10px 0;
  }
  .intro-section,
  .programming-section {
    flex-direction: column;
    text-align: center;
  }
  .image-container {
    margin-top: 20px;
  }
  .picture {
    width: 160px;
  }
  .carousel img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .navbar h1 a {
    font-size: 1.4rem;
  }
  .carousel img {
    height: 50px;
  }
  .typing-text {
    font-size: 0.95rem;
  }
  .social-links a {
    font-size: 1.3rem;
  }
}
