body {
  margin: 0;
  display: flex;
  justify-content: center;
  height: 100vh;
  align-items: center;
  background-color: #9eeb53;
}

.feedback-container {
  background-color: #8bcff1;
  width: 400px;
  height: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  position: relative;
}

.emoji-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20%;
  /* background-color: #ffa6ca; */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  overflow: hidden;
  /* will hide emojis outside of the container i.e. the other emojis */
}

.fa-regular {
  margin: 1px;
  transform: translateX(0);
  transition: transform 0.2s;
}

.fa-star{
    color: #43474b;
    cursor: pointer;
}

.rating-container{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20%;
}

.fa-star.active{
    color: #fbc200;
}
