.focusAreas {
  display: flex;
  padding: 0 1em;
  margin: 0 auto;
  justify-content: center;
}
.focusArea h1, h2 {
  color: hsl(var(--DarkBlue));
}

.focusArea {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 10px;
  align-items: center;
  text-align: center;
}
.focusArea img {
  width: 150px;
  margin-bottom: 20px;
  
}
.focusArea p {
  text-align: center;
  font-weight: 400;
  color: hsl(var(--DarkBlue));
}
.focusArea a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.25));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.focusArea a:hover {
  filter: drop-shadow(0px -4px 4px rgba(0, 0, 0, 0.5));
  transform: scale(0.95);
}

@media screen and (max-width: 768px){
  .focusAreas {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
  .focusArea {
    width: 95%;
  }
  .focusArea h2 {
      text-align: center;
  }
}