/* Moble-first approach */
.home-title {
  display: none;
}

.home-page {
  text-decoration: underline;
}
.content {
  min-height: 200px;
}

.home-info {
  margin: 100px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-around;
  align-content: center;
}

.home-info a {
  color: initial;
  text-decoration: none;
}

.home-info .item {
  background-color: #ffdc00;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-basis: 20%;
  text-align: center;
  font-size: 1.2rem;
  box-shadow: 6px 7px 14px -3px rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

.item-pic {
  height: 183px;
  max-height: 183px;
  overflow: hidden;
}

.item-text {
  height: 70px;
  max-height: 70px;
}

.item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item {
  width: 92%;
  align-self: center;
}

.hero img {
  object-position: 80% 22%;
}

/* Desktop device and larger screens */
@media only screen and (min-width: 1025px) {
  .home-info {
    margin: 100px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-content: center;
    height: 250px;
  }
}
