@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background-color: #ffffff;
  color: #1f2937;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #e5e7eb;
  border-bottom: 1px solid #d1d5db;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
header .logo-section {
  display: flex;
  align-items: center;
  cursor: pointer;
}
header .logo-section img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius: 50%;
}
header .logo-section h1 {
  font-size: 1.8rem;
  font-weight: 600;
}
header .social-links {
  width: 35%;
}
header .social-links ul {
  display: flex;
  gap: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .social-links ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1f2937;
  font-weight: 600;
  transition: color 0.3s;
}
header .social-links ul li a img {
  width: 20px;
  height: 20px;
}
header .social-links ul li a:hover {
  color: #3b82f6;
}

main {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}
main .intro,
main .projects {
  margin-bottom: 30px;
  text-align: center;
  animation: fadeIn 1s ease-in;
}
main .intro h2,
main .projects h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  animation: fadeIn 1s ease-in;
}
main .intro p,
main .projects p {
  font-size: 1.2rem;
  line-height: 1.5;
}
main .intro ul,
main .projects ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}
main .intro ul li,
main .projects ul li {
  background-color: #e5e7eb;
  padding: 15px;
  border-radius: 8px;
  transition: transform 0.3s;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
main .intro ul li:hover,
main .projects ul li:hover {
  transform: translateY(-5px);
}
main .intro ul li a,
main .projects ul li a {
  color: #2563eb;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s;
}
main .intro ul li a:hover,
main .projects ul li a:hover {
  color: #3b82f6;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  background-color: #e5e7eb;
  border-top: 1px solid #d1d5db;
  font-weight: bold;
  font-size: 0.9rem;
  color: #1f2937;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=style.css.map */
