.room-head {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}

.room-send-main-cont {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 10px;
  border-radius: 5% 6px;
}

.room-send-main-cont img {
  width: 100%;
  height: 65vh;
  border-radius: 20% 4px;
  border-radius: 6px;
  /* object-fit: cover; */
}

.room-send-main-cont h4 {
  font-size: 24px;
  font-weight: 500;
  padding: 10px;
}

.room-main-div-cont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.main-cont-head {
  padding: 2rem 4rem;
}

@media (max-width: 992px) {
  .room-main-div-cont {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .main-cont-head {
    padding: 2rem 0rem;
  }
  .room-send-main-cont h4 {
    font-size: 24px;
    font-weight: 500;
    padding: 10px;
    text-align: center;
  }
}

a {
    color: white;
  }
