* {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  background-color: #ebf1ff;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Hanken Grotesk, sans-serif;
  font-size: 1.6rem;
  display: flex;
}

.result-container {
  background-color: #fff;
  border-radius: 3.2rem;
  grid-template-columns: 45fr 55fr;
  width: 75rem;
  display: grid;
  overflow: hidden;
}

.your-result {
  text-align: center;
  background: linear-gradient(#7857ff, #2e2be9);
  border-radius: 3.2rem;
  padding: 4.8rem 6rem;
}

.result-title {
  color: #c8c7ff;
  font-size: 1.8rem;
  font-weight: 600;
}

.result-score {
  color: #c8c7ff;
  z-index: 99;
  margin: 6.2rem 0;
  font-weight: 600;
  position: relative;
}

.overall-score {
  color: #fff;
  font-size: 6.4rem;
  line-height: 1.2;
}

.result-score:before {
  content: "";
  aspect-ratio: 1;
  z-index: -1;
  background: linear-gradient(#4e21ca, #2421ca00);
  border-radius: 100%;
  width: 18rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.result-vocab {
  color: #fff;
  margin-bottom: 1.8rem;
  font-size: 2.6rem;
  font-weight: 600;
}

.result-description {
  color: #ebf1ff;
  font-size: 1.4rem;
  line-height: 1.6;
}

.summary {
  padding: 3.2rem 4.4rem;
}

.summary-title {
  margin-bottom: 2.4rem;
}

.summary-lists {
  list-style: none;
}

.summary-list {
  border-radius: .8rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  padding: 1.6rem;
  font-size: 1.8rem;
  font-weight: 600;
  display: flex;
}

.summary-list:last-child {
  margin: 0;
}

.summary-meta {
  align-items: center;
  gap: 1.2rem;
  display: flex;
}

.summary-score {
  color: #a1a1a1;
}

.summary-score .score {
  color: #303b5a;
}

.red--bg {
  color: #ff5757;
  background-color: #ff57570d;
}

.yellow--bg {
  color: #ffb01f;
  background-color: #ffb01f0d;
}

.green--bg {
  color: #00bd91;
  background-color: #00bd910d;
}

.blue--bg {
  color: #1125d4;
  background-color: #1125d40d;
}

.summary-btn {
  color: #ebf1ff;
  width: 100%;
  font-size: inherit;
  cursor: pointer;
  background-color: #303b5a;
  border: none;
  border-radius: 4.4rem;
  margin: 3.6rem 0 0;
  padding: 1.2em;
  font-weight: 600;
  display: inline-block;
}

.summary-btn:hover {
  background: linear-gradient(#7857ff, #2e2be9);
}

@media (width <= 52em) {
  body {
    height: 100%;
  }

  .result-container {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

@media (width <= 40em) {
  .result-container {
    overflow: visible;
  }

  .your-result {
    border-radius: 0 0 3.2rem 3.2rem;
    padding: 3.6rem 5.4rem;
  }
}
/*# sourceMappingURL=repo.71296f17.css.map */
