.staff h2 {
  text-align: center;
  margin: 30px 0;
}
.staff a {
  font-weight: 600;
}
.staff a:hover {
  text-decoration: none;
}

.staff-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-evenly;
}

#staff-title {
  margin-top: -20px;
}

.staff-member {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
  box-shadow: 5px 5px 10px #c8c8c8;
  background-color: rgba(255, 255, 255, 0.3);
  transition: background-color 0.5s ease;
}

.staff-member:hover {
  background-color: white;
}

.staff-member-img {
  width: 250px;
  margin-bottom: 10px;
}

.staff-member-info {
  padding: 0 10px 10px 10px;
}
.staff-member-info p {
  font-size: 14px;
  color: #707070;
  font-weight: 400;
}

@media only screen and (max-width: 768px) {
  .staff-grid {
    grid-template-columns: auto;
  }
}

/*# sourceMappingURL=staff.css.map */
