.main_home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 10px;
  padding: 0 10px;
  align-items: stretch;
}
.main_home_div {
  background-color: blue;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}
.main_home_div_h3 {
  text-align: center;
  font-weight: 700;
}
.main_home_div_img {
  width: 100%;
  height: 350px;
  border-radius: 5px;
  background-color: lightblue;
  object-fit: fill;
}
.main_home_div_a {
  display: flex;
  background-color: lightblue;
  border-radius: 5px;
  justify-content: center;
  color: black;
  align-items: center;
  margin-top: 5px;
  padding: 5px;
  gap: 2px;
}
.main_home_div i {
  color: #000;
}
