.project-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 50px;
}
.project-item .project-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-header {
  font-family: 'Arial', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.project-left .project-content {
  text-align: left;
  margin: auto;
}
.project-right .project-content {
  text-align: right;
  margin: auto;
}

.project-link {
  font-family: 'Arial', sans-serif;
  font-size: 11pt;
  margin-top: 1rem;
  color: #333;
  text-decoration: underline;
}

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

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  padding-top: 80px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #bad9c4;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #333333;
  font-weight: bold;
  transition: box-shadow 0.2s;
}

.nav-links li a:hover {
  box-shadow: 0 4px 12px #616161;
}

.intro {
  text-align: center;
  padding: 60px 20px;
}

.intro h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.about-box {
  border: 2px dashed #bad9c4;
  padding: 20px;
  margin: 30px auto;
  max-width: 1200px;
}

.social-icons {
  margin-top: 30px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: #bad9c4;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 100;
}

.footer-left,
.footer-right {
  font-weight: bold;
}

.project-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.project-list > .project-item:first-child {
  padding-top: 2.5rem;
}
.project-list > .project-item:nth-child(3) {
  padding-top: 40px;
  padding-bottom: 40px;
}
.project-list > .project-item:nth-child(2) {
  padding-top: 2.5rem;
}

.project-item {
  margin-bottom: 30px;

.project-img {
  width: 150px;
  border-radius: 10px;
  box-shadow: 0 2px 8px #484848;
  margin-bottom: 10px;
}

.project-item p {
  margin: 0;
  font-size: 14pt;
  color: #333;
  line-height: 1.6;
  max-width: 400px;
}

@media (max-width: 700px) {
  .project-item {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .project-img {
    width: 140px;
    max-width: 140px;
  }
  .project-left .project-content,
  .project-right .project-content {
    text-align: left;
    align-items: flex-start;
  }
}
}
