#project-section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-margin-top: 50px;
}

.project-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}

.project-content > article {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 28%;
  max-width: 28%;
}

.project-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

.project-images {
  width: 90%;
  height: auto;
  aspect-ratio: 16/9;
  margin: 1em;
}

.page-link {
  color: rgb(122, 195, 255);
}

.top-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  padding: 1em;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  min-height: 300px;
}

.bottom-section {
  padding: 1em;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1em;
}

.project-link {
  width: fit-content;
  padding: 0.5em;
  border-radius: 10px;
  background-color: var(--standard-primary-color);
}

.project-link:hover {
  text-decoration: none;
  background-color: var(--standard-primary-color-darker);
  box-shadow: 0 0 5px var(--standard-secondary-color-darker);
}

.links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2em;
}
