.subsection {
  min-height: 800px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.subsection > a {
  margin-top: 75px;
}

.subsection__intro {
  margin-top: 60px;
  margin-bottom: -60px;
  font-size: 28px;
}

.subsection__projects {
  width: 100%;
  height: 100%;
  min-height: 700px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
}

.subsection__link {
  font-size: 24px;
  margin-bottom: 60px;
  background-color: darkblue;
  border: 1px solid white;
  border-radius: 20px;
  padding: 8px 25px;
  transition: 0.3s all ease;
  font-weight: bold;
}

.subsection__link:hover {
  background-color: blue;
}
