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

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

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

.footer-content h2 {
  font-size: 20px;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.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: 80px;
}

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

.featured-project {
  text-align: left;
  font-family: "Space Mono", monospace;
}

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

.project-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.project-link img {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.project-link:hover img {
  transform: translateY(-4px);
  opacity: 0.92;
}

.featured-project h2 {
  position: absolute;
  left: 0;
  top: -58px;
  margin: 0;
  font-size: 28px;
  font-weight: 400;
}

@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;
  }
}
