body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: black;
  background-color: lightseagreen;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  background: black;
  color: whitesmoke;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

header nav ul {
  list-style: none;
  padding: 0;
}

header nav ul li {
  display: inline;
  margin: 0 15px;
}

header nav ul li a {
  color: whitesmoke;
  font-weight: 600;
}

header nav ul li a:hover {
  color: orange;
}

.section {
  padding: 30px 0;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.project-card {
  background: whitesmoke;
  padding: 20px;
  border-radius: 8px;
}

.project-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 1rem;
  color: black;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: black;
  color: whitesmoke;
  border-radius: 5px;
}

.btn:hover {
  background: orange;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.skills-list span {
  background: black;
  color: whitesmoke;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  font-size: 1.5rem;
  color: black;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ff6347;
}

footer {
  background: black;
  color: whitesmoke;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

#contact .container {
  text-align: center;
}
