.BoxHolder {
  display: flex;
  flex-wrap: wrap;
}
.BoxHolder img {
  border: 1px solid #ccc;
  min-width: 130px;
}
.BoxElement {
  flex-basis: 30%;
  border: solid white 2px;
  cursor: pointer;
  position: relative;
  text-align: center;
}
.BoxElement.active {
  border: solid #000 2px;
}
.boxtext {
  position: absolute;
  bottom: 0px;
  left: 0%;
  width: 100%;
  color: #fff;
  font-size: 1.4rem;
  padding: .25rem;
  background-color: rgba(0, 0, 0, 0.5);
  ;
}
.boxtext span {
  display: block;
  width: 100%
}
.BoxWrap h2 {
  font-size: 2rem;
}