.project-display-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5%;
  padding-bottom: 5%;
}
.featured-projects {
  display: grid;
  padding: 5%;
  align-items: center;
  justify-items: center;
}
.featured-project {
  display: flex;
  flex-direction: column;
  border: solid black;
  width: 25%;
  height: auto;
}

.featured-project > h3 {
  text-align: center;
  padding: 20px;
  align-self: center;
}
.featured-project > p {
  padding-left: 4%;
  padding-right: 4%;
  padding-bottom: 4%;
  line-height: 30px;
}

.read-full-post-button {
  background-color: white;
  border: 2px solid black;
  color: black;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 7px 15px;
  text-decoration: none;
  text-align: center;
  margin-left: 10%;
  margin-right: 10%;
  margin-bottom: 3%;
  box-shadow: 3px 3px 0px black;
  position: relative;
}
.read-full-post-button:hover {
  background-color: rgb(220, 220, 220);
  transition-duration: 15ms;
}
.read-full-post-button:active {
  top: 2px;
  left: 2px;
  box-shadow: 1px 1px 0px black;
}
.project-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.project-link-icon {
  width: 50px;
  height: auto;
  margin-top: 5px;
  border-radius: 100%;
}
.project-link-icon:hover {
  box-shadow: 4px 4px 25px rgba(220, 220, 220, 0.8);
  transition-duration: 15ms;
}
.project-link-button {
  font-family: "Joystix Monospace";
  background-color: white;
  border: 4px solid black;
  color: black;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 10px 15px;
  text-decoration: none;
  text-align: center;
  margin-left: 10%;
  margin-right: 10%;
  margin-bottom: 3%;
  box-shadow: 5px 5px 0px black;
  position: relative;
}
.project-link-button:hover {
  background-color: rgb(220, 220, 220);
  transition-duration: 15ms;
}
.project-link-button:active {
  top: 3px;
  left: 3px;
  box-shadow: 1px 1px 0px black;
}
