* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: afacad;
}
body {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: whitesmoke;
}
.container {
  width: 550px;
  height: 340px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}
strong {
  margin: 10px 0;
  font-size: 25px;
  /* letter-spacing: 1px; */
  word-spacing: 3px;
}
.ratings-container {
  display: flex;
  flex-direction: row;
}
.ratings {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px;
  transition: 0.5s;
}
.icon {
  font-size: 50px;
  text-shadow: 1px 0px 8px rgba(0, 0, 0, 0.456);
}
.ratings:hover,
.ratings.active {
  transform: scale(1.3);
  cursor: pointer;
}

small {
  margin-top: 15px;
  font-size: 20px;
  color: #0000008a;
  font-weight: 500;
}
button {
  padding: 6px 30px;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  background-color: rgb(43, 43, 255);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 8px;
}
button:hover {
  transform: scale(1.05);
}
.feedback {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
}
span {
  font-size: 50px;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .container {
    width: 350px;
    height: 240px;
  }
  strong {
    font-size: 20px;
  }
  small {
    font-size: 16px;
  }
  .ratings {
    margin: 20px;
  }
  .icon {
    font-size: 30px;
  }
  button {
    padding: 3px 18px;
    font-size: 16px;
    margin-top:10px;
  }
  p {
    font-size: 14px;
  }
}
