#project .project {
  height: 300px;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#project .project .background_overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

#project .project:hover {
  background-blend-mode: lighten;
  cursor: pointer;
}

#project .project h3 {
  color: #fffbfb;
  z-index: 1;
}
