@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Hanken Grotesk", serif;
}

body {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(135deg, hsl(221, 100%, 96%), hsla(241, 100%, 89%, 0.4));
}

.result {
  min-height: 100vh;
  width: 100%;
  margin: 0 auto;
  max-width: 600px;
  background-color: hsl(0, 0%, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.result__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  background-image: linear-gradient(To bottom, hsl(252, 100%, 67%), hsl(241, 81%, 54%));
  border-radius: 0 0 30px 30px;
  padding-block-end: 2rem;
}
.result__title {
  color: hsl(241, 100%, 89%);
  font-size: 1.3rem;
  margin-block-start: 1.9rem;
}
.result__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background-image: linear-gradient(hsl(256, 72%, 46%), hsla(241, 72%, 46%, 0));
  text-align: center;
}
.result__score-value {
  font-size: 2.7rem;
  font-weight: 900;
  color: hsl(0, 0%, 100%);
}
.result__score-total {
  font-weight: 600;
  color: hsl(241, 100%, 89%);
}
.result__remark {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: hsl(241, 100%, 89%);
}
.result__remark-highlight {
  color: hsl(0, 0%, 100%);
  font-size: 1.5rem;
  margin-block-end: 1rem;
}
.result .summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.5rem;
}
.result .summary__title {
  align-self: flex-start;
  color: hsl(224, 30%, 27%);
}
.result .summary__list {
  width: 100%;
  margin-block: 1rem;
  list-style-type: none;
  margin-left: 0.6rem;
}
.result .summary__item {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  margin-block: 1.1rem;
  border-radius: 0.6rem;
}
.result .summary__item--red {
  background-color: hsla(0, 100%, 67%, 0.07);
  color: hsl(0, 100%, 67%);
}
.result .summary__item--yellow {
  background-color: hsla(39, 100%, 56%, 0.07);
  color: hsl(39, 100%, 56%);
}
.result .summary__item--green {
  background-color: hsla(166, 100%, 37%, 0.07);
  color: hsl(166, 100%, 37%);
}
.result .summary__item--blue {
  background-color: hsla(234, 85%, 45%, 0.07);
  color: hsl(234, 85%, 45%);
}
.result .summary__icon-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.result .summary__category {
  font-weight: 600;
  margin-inline-start: 0.4rem;
}
.result .summary__score {
  color: hsla(224, 30%, 27%, 0.5);
}
.result .summary__score span {
  color: hsl(224, 30%, 27%);
  font-weight: 700;
}
.result .summary__btn {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  width: 100%;
  border: none;
  padding-block: 1rem;
  border-radius: 30px;
  margin-inline: none;
  color: hsl(0, 0%, 100%);
  background-color: hsl(224, 30%, 27%);
}
.result .summary__btn:hover {
  background-image: linear-gradient(To top, hsl(241, 81%, 54%), hsl(252, 100%, 67%));
}

@media (min-width: 600px) {
  body {
    margin: 4rem;
  }
  .result {
    min-height: 0;
    max-width: 800px;
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 20px 30px rgba(0, 0, 0, 0.04);
    border-radius: 30px;
  }
  .result__intro {
    padding: 3.5rem;
    border-radius: 30px;
  }
  .result__title {
    color: hsl(241, 100%, 89%);
    font-size: 1.3rem;
  }
}/*# sourceMappingURL=main.css.map */