.room {
    display: flex;
    height: 150px;
    flex-wrap: wrap;
}

.rug {
    width: 150px;
    min-height: 20px;
    text-align: center;
}

.rug:hover {

-webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  transition: all 0.2s linear;
   }

.room-1 {
    align-items: stretch;
    align-content: stretch;
    justify-content: center;
}

.room-2 {
    align-items: stretch;
    align-content: stretch;
    justify-content: center;
}

.room-3 {
    align-items: stretch;
    align-content: stretch;
    justify-content: center;
}

.circle {
  position: absolute;
  width: 50px;
  height: 50px;
  left: -15px;
  bottom: 40%;
  border-radius: 50%;
  background: #cfcfcf;
}

.circle p{
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  font-weight: bold;
  color: black;
  }