.home-item-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

.home-item {
  flex: 0 0 32%;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  padding: 20px;
  position: relative;
  margin: 20px 0;
  height: 300px;
  background-color: #ced4da;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.home-item:hover {
  color: #fff;
  text-decoration: none;
}

@media(max-width: 767px) {
  .home-item {
    flex: 0 0 48%;
  }
}

@media(max-width: 575px) {
  .home-item {
    flex: 0 0 100%;
  }
}

.home-item__title {
  font-size: 24px;
}

.home-item__more {
  position: absolute;
  bottom: 5px;
}

h2 {
  font-size: 26px;
  text-align: center;
}

h3 {
  font-size: 18px;
  text-align: center;
}