body {
  margin: 0;
  padding: 0 16px 24px;
  box-sizing: border-box;
}

.title {
  display: flex;
  font-family: 'Arial', sans-serif;
  font-size: 100px;
  justify-content: space-evenly;
  align-items: center;
  color: #000000;
  width: 100%;
  text-align: center;
  margin: 124px 0 0;
}

h3 {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  color: #000000;
  margin: 8px 0 0;
  font-weight: 400;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
}

.horizontal-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 32px;
  width: 100%;
  box-sizing: border-box;
  padding-top: 48px;
}


.vertical-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding-top: 32px;
  margin-top: 40px;
  row-gap: 24px;
}

.project-card {
  text-align: center;
  position: relative;
  width: min(100%, 400px);
}

.featured-project {
  text-align: left;
}

.project-card img {
  display: block;
  width: 100%;
  height: auto;
}

.featured-project h2 {
  position: absolute;
  left: 0;
  top: -48px;
  margin: 0;
}

@media (max-width: 768px) {
  .title {
    font-size: clamp(40px, 14vw, 72px);
  }

  .horizontal-container {
    flex-direction: column;
    gap: 56px;
    padding-top: 32px;
  }

  .vertical-container {
    margin-top: 24px;
    padding-top: 16px;
  }

  .project-card {
    width: 100%;
    max-width: 420px;
  }

  .featured-project h2 {
    position: static;
    margin: 0 0 12px;
  }
}