.project {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
}

.project-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-bg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.project-header {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 50%;
}

.project-header h2,
.project-header p,
.project-tags p,
.project-url a {
  color: var(--text-light);
}

.project-header {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.project-header h2 {
  font-size: 5rem;
  position: relative;
  left: -0.035em;
  text-transform: none;
}

.project-tags {
  position: absolute;
  bottom: 15em;
  left: 50%;
}

@media (max-width: 900px) {
  .project-header {
    width: 100%;
    text-align: center;
  }

  .project-tags {
    width: 30%;
    bottom: 10em;
  }
}
