* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Courier New", Courier, monospace;
}
body {
  height: 100vh;
  width: 100%;
  background-color: #00612f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  height: 12rem;
  width: 30rem;
  border-radius: 10px;
  background-color: white;
  gap: 20px;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  align-items: center;
  justify-content: flex-start;
}
.container .rating-box {
  width: 100%;
  display: flex;
  padding-left: 50px;
  flex-direction: row;
  gap: 10px;
}
.container .rating-box svg {
  height: 4rem;
}
.container p {
  font-size: 18px;
  font-weight: bold;
}
svg {
  transition: fill 0.2s;
  cursor: pointer;
}
