body {
  background-color: hsl(216, 12%, 8%);
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(0, 100%, 100%);
  font-family: "overpass";
  font-size: 16px;
}

.card {
  background-color: hsl(213, 19%, 18%);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 330px;
  max-height: 400px;
  margin: 0 1rem;
}

.card__star-icon {
  padding: 1rem;
  background-color: hsl(213, 19%, 23%);
  border-radius: 50%;
  margin: 0;
}

.card__title {
  font-weight: 700;
  margin: 1rem 0 0 0;
  font-size: 28px;
}

.card__text {
  color: hsl(217, 12%, 63%);
  font-size: 16px;
  margin: 1rem 0 0 0;
}

.card__ratings {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0 0 0;
}

.card__ratings button {
  height: 50px;
  width: 50px;
  background-color: hsl(213, 19%, 23%);
  border-radius: 50%;
  border: none;
  color: hsl(217, 12%, 63%);
  font-size: inherit;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.card__ratings button:hover {
  background-color: hsl(0, 100%, 100%);
  color: hsl(216, 12%, 8%);
}

.card__ratings button[aria-pressed="true"] {
  background-color: hsl(25, 97%, 53%);
  color: hsl(216, 12%, 8%);
}

.card__submit-button {
  margin: 2rem 0 0 0;
  width: 100%;
  border: none;
  background-color: hsl(25, 97%, 53%);
  padding: 1rem 0;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
  font-size: 16px;
  transition: all 0.2s ease;
}

.card__submit-button:hover {
  background-color: hsl(0, 100%, 100%);
  color: hsl(216, 12%, 8%);
}

.card__result-img {
  display: block;
  margin: 0 auto;
}
.card__result-rating {
  color: hsl(25, 97%, 53%);
  font-weight: 300;
  text-align: center;
  background-color: hsl(213, 19%, 22%);
  padding: 8px 16px;
  border-radius: 999px;
}

.card__result-title {
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.card__result-text {
  display: inline-block;
  color: hsl(217, 12%, 63%);
  font-size: 16px;
  margin: 0;
}

.result {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 20px;
}
