.review-container {
  max-width: 1300px;
  min-height: 50vh;
  margin: auto;
  display: flex;
  flex-direction: column;
  text-align: start;
}
.review-container h3{
    color: #fff;
    font-size: 1.7rem;
    padding: 15px 0;
    line-height: 40px;
    text-align: start;
}
.review-container h4{
  color: #fff;
    font-size:1.4rem;
    text-align: left;
    padding: 15px 0;
}

.stars span {
  font-size: 30px;
  cursor: pointer;
  color: #ccc;
}

.stars span.selected {
  color: gold;
}

textarea {
  width: 50%;
  height: 80px;
  margin: 10px 0;
  padding: 10px;
  font-size: 0.7rem;
}

.review-container button {
  width:100px;
  padding: 10px 20px;
  font-size: 1rem;
  border: 1px solid white;
  background-color: transparent;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 15px;
}

.review {
  background: #f1f1f1;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
}

@media (max-width:950px){
  .review-container{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .review-container h3{
    text-align: center;
    font-size: 1.7rem;
  }
}
@media (max-width:750px){
  .review-container{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .review-container h3{
    text-align: center;
    font-size: 1.4rem;
  }
}
@media (max-width:575px){
  .review-container{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .review-container h3{
    text-align: center;
    font-size: 1.2rem;
  }
}