.projectSection {
  margin-top: 2rem;
}

.projectsHeader {
  text-align: center;
  font-size: 1.5rem;
  margin: 0 0.7rem;
}
.projectsHeader i {
  margin-left: 0.5rem;
}

.projectsContainer {
  margin-top: 3rem;
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  padding: 0 1rem;
}

.projectCard {
  max-width: 25rem;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-height: 100%;
  padding: 1rem;
  box-sizing: border-box;
}
.projectCard img {
  width: 100%;
  filter: drop-shadow(2px 2px 4px rgba(85, 80, 80, 0.781));
}
.projectCard .projectTitle {
  text-align: center;
}
.projectCard p {
  font-size: 0.9rem;
  text-align: left;
  flex-grow: 1;
  margin-top: 0.5rem;
}
.projectCard button {
  width: 100%;
  margin-top: 1rem;
  color: white;
  background: transparent;
  border: 1px solid white;
}
.projectCard button:hover {
  background-color: white;
  color: black;
}

.moreProjectsOtw {
  text-align: center;
  font-size: 1rem;
  display: block;
}
.moreProjectsOtw:first-of-type {
  margin-top: 2rem;
}

@media screen and (max-width: 700px) {
  .projectsContainer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0rem;
  }
  .projectCard {
    padding: 0rem;
    margin: 2rem 0;
  }
}/*# sourceMappingURL=projectsSection.css.map */