body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
}

header {
  background-color: #333;
  text-align: center;
  padding: 20px;
}

header h1 {
  color: #fff;
}

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

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

#projects {
  display: flex;
  flex-direction: column-reverse;
}

.project-card {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 20px auto;
  padding: 20px;
  text-align: left;
  transition: width 0.3s ease;
}

@media (min-width: 1024px) {
  .project-card {
    width: 60%;
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .project-card {
    width: 75%;
  }
}

@media (max-width: 767px) {
  .project-card {
    width: 90%;
  }
}

.project-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.project-card p {
  font-size: 16px;
  color: #666;
}

.project-links a {
  text-decoration: none;
  margin-right: 10px;
  color: #007bff;
}

section {
  padding: 40px 0;
  background-color: #fff;
}

h1,
h2,
h3 {
  color: #333;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
#about {
  background-color: #f9f9f9;
  padding: 40px 0;
  text-align: center;
}

#about .section-content {
  max-width: 800px;
  margin: 0 auto;
}

#about h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}

#about p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

#contact {
  background-color: #f7f7f7;
  padding: 40px 0;
  text-align: center;
}

#contact .section-content {
  max-width: 800px;
  margin: 0 auto;
}

#contact h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}

#contact p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

#contact ul {
  list-style-type: none;
  padding: 0;
}

#contact ul li {
  font-size: 16px;
  color: #444;
  margin: 10px 0;
}

#contact a {
  color: #007bff;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}
