* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #1e1e1e;
  padding: 1rem;
}

header {
  background: #4A90E2;
  color: #ffffff;
  padding: 1rem 0;
}
header nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
header nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}
header nav ul li a:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  margin: 2rem auto;
  max-width: 600px;
}
.hero .profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: 2rem;
  margin-bottom: 0.2rem;
}
.hero h2 {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1rem;
  color: #444;
}

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.projects .project-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.projects .project-card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.projects .project-card h3 {
  margin-bottom: 0.5rem;
}
.projects .project-card p {
  font-size: 0.9rem;
  color: #555;
}
.projects .project-card a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #4A90E2;
  text-decoration: none;
  font-weight: bold;
}
.projects .project-card a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .projects {
    grid-template-columns: 1fr;
  }
  .hero .profile-img {
    width: 80px;
    height: 80px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero h2 {
    font-size: 1rem;
  }
}
.site-footer {
  background-color: #f4f4f4;
  padding: 2rem 1rem;
  text-align: center;
  color: #555;
  font-size: 0.9rem;
}
.site-footer .footer-container {
  max-width: 960px;
  margin: 0 auto;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.site-footer .footer-links li a {
  text-decoration: none;
  color: #4A90E2;
  transition: color 0.2s ease-in-out;
}
.site-footer .footer-links li a:hover {
  color: #1e70c1;
}

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