body {
  margin: 0;
  display: flex;
  justify-content: center;
  height: 100vh;
  align-items: center;
  background-color:#FFD54F;
}
.feedback-container {
  background-color: white;
  width: 400px;
  height: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  position: relative;
}
.emoji-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  overflow: hidden;
}
.far {
  margin: 1px;
  transform: translateX(0);
  transition: transform 0.2s;
}
.rating-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20%;
}
.fa-star {
  color: lightgray;
  cursor: pointer;
}
.fa-star.active {
  color: #FFD54F;
}