.teaching h2 {
  margin: 30px 0 30px 0;
  text-align: center;
}

.teaching-grid {
  display: grid;
  grid-template-columns: 28% 28% 28%;
  justify-content: space-evenly;
}

.teaching-course {
  box-shadow: 5px 5px 10px #c8c8c8;
  padding: 30px;
  transition: background-color 0.5s ease;
  background-color: rgba(255, 255, 255, 0.5);
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
}
.teaching-course p {
  margin-top: 10px;
}
.teaching-course h5 {
  text-align: center;
  margin-bottom: 20px;
}

.teaching-course-info {
  margin-top: auto;
}
.teaching-course-info a {
  font-weight: 500;
}

.teaching-course:hover {
  background-color: rgba(255, 255, 255, 0.85);
}

.teaching-instructors {
  margin-top: auto;
}

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

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