body {
  display: flex;
  align-items: start !important;
  max-width: 100vw !important;
  margin: 0;
}

h2 span {
  margin-left: 2rem;
}
h2 {
  line-height: 110%;
  font-size: 2rem;
  width: fit-content;
  margin-left: 1rem;
}

.projects {
  display: flex;
  flex-direction: row-reverse;
  max-width: 90vw;
  overflow-x: scroll;
  padding: 2rem;
  gap: 2rem;
  padding-left: 1rem;
}

.project-card {
  aspect-ratio: 5/7;
  min-width: 15vw;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.project-card:hover {
  transform: scale(1.05);
  background-color: rgba(0, 0, 0, 0.2);
}

.project-card h1 {
  font-size: 1.5rem;
}
