*{
  font-family: Arial, Helvetica, sans-serif;
  padding: 0;
  margin: 0;
}
h2{
  font-weight: 700;
  text-align: center;
  margin-bottom:25px;
}

.reviews{
  width:100%;
  background-color:rgb(222, 214, 214);
  padding-bottom: 15px;
  height: auto;
}

.review{
background-color:rgb(222, 214, 214);
padding-bottom: 15px;
display: flex;
flex-wrap: wrap;
}
.customer{
  width:25%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding:15px;
  margin:15px;

}

.customer img {
  width:30%;
  height:80px;
  width:80px;
  border:2px solid black;
  border-radius: 50%;
  margin-right: 20px;;

}
.comment{
  width:65%;
  margin-left: 5px;
  align-items: center;
}
.comment h5{
  font-weight: 700;
  margin-bottom: 10px;
}
.comment p{
font-size:12px;
font-style: italic;
}
@media(max-width:768px){
.customer{
  flex-wrap: wrap;
  }
}
