/* Color */
/* Gradient */
/* Font */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
}
@media (min-width: 768px) {
  body {
    background-color: #f3f4fd;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Card */
.card {
  background-color: #ffffff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px 0;
}
@media (min-width: 768px) {
  .card {
    width: 89%;
    max-width: 736px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 32px;
    box-shadow: 0 30px 60px 0 rgba(61, 108, 236, 0.15);
  }
}

/* Result */
.result-container {
  background-image: linear-gradient(to bottom, #7755ff, #2f2ce9);
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
}
@media (min-width: 768px) {
  .result-container {
    border-radius: 32px;
    padding: 45px 0;
  }
}
.result-container .result-content {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .result-container .result-content {
    gap: 32px;
  }
}
.result-container .your-result {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: #ecf2ff;
}
@media (min-width: 768px) {
  .result-container .your-result {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
  }
}
.result-container .score-container {
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to bottom, #4d21c9, rgba(37, 33, 201, 0));
  border-radius: 50%;
}
@media (min-width: 768px) {
  .result-container .score-container {
    width: 200px;
    height: 200px;
  }
}
.result-container .score-container .score-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.result-container .score-container .score-content h2 {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: #ffffff;
}
@media (min-width: 768px) {
  .result-container .score-container .score-content h2 {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 800;
    font-size: 72px;
    line-height: 1;
  }
}
.result-container .score-container .score-content p {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: #cac9ff;
}
@media (min-width: 768px) {
  .result-container .score-container .score-content p {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
  }
}
.result-container .feedback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
@media (min-width: 768px) {
  .result-container .feedback {
    gap: 16px;
  }
}
.result-container .feedback .title {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #ffffff;
}
@media (min-width: 768px) {
  .result-container .feedback .title {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
  }
}
.result-container .feedback .description {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: #cac9ff;
}
@media (min-width: 768px) {
  .result-container .feedback .description {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
  }
}

/* Summary */
.summary-container {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .summary-container {
    align-items: center;
  }
}
.summary-container .summary-content {
  width: 84%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .summary-container .summary-content {
    width: 77%;
    gap: 32px;
  }
}
.summary-container .summary-content .title {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: #303b59;
}
@media (min-width: 768px) {
  .summary-container .summary-content .title {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
  }
}
.summary-container .summary-content .bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.summary-container .summary-content .bars .bar {
  display: flex;
  justify-content: space-between;
  border-radius: 12px;
  padding: 17.5px 16px;
}
.summary-container .summary-content .bars .bar .bar-content {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .summary-container .summary-content .bars .bar .bar-content {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
  }
}
.summary-container .summary-content .bars .bar .bar-score {
  display: flex;
  align-items: center;
  gap: 8px;
}
.summary-container .summary-content .bars .bar .bar-score span {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: #303b59;
}
@media (min-width: 768px) {
  .summary-container .summary-content .bars .bar .bar-score span {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
  }
}
.summary-container .summary-content .bars .bar .bar-score span:last-child {
  opacity: 50%;
}
.summary-container .summary-content .bars .bar-red {
  color: #ff5555;
  background-color: #fff6f6;
}
.summary-container .summary-content .bars .bar-yellow {
  color: #ffb21e;
  background-color: #fffbf4;
}
.summary-container .summary-content .bars .bar-green {
  color: #00bb8f;
  background-color: #f2fcf9;
}
.summary-container .summary-content .bars .bar-blue {
  color: #1125d6;
  background-color: #f3f4fd;
}
.summary-container .summary-content .continue-button {
  background-color: #303b59;
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  border-radius: 128px;
  border: none;
  padding: 16.5px 0;
  cursor: pointer;
}
.summary-container .summary-content .continue-button:hover {
  background-image: linear-gradient(to bottom, #7755ff, #2f2ce9);
}

/*# sourceMappingURL=style.css.map */
