@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --light-slate-blue: hsl(252, 100%, 67%);
  --light-royal-blue: hsl(241, 81%, 54%);
  --violet-blue: hsla(256, 72%, 46%, 1);
  --persian-blue: hsla(241, 72%, 46%, 0);
  --white: hsl(0, 0%, 100%);
  --pale-blue: hsl(221, 100%, 96%);
  --light-lavender: hsl(241, 100%, 89%);
  --dark-gray-blue: hsl(224, 30%, 27%);
}

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

body {
  font-family: 'Hanken Grotesk', sans-serif;
}

.result__your {
  background: linear-gradient(var(--light-slate-blue), var(--light-royal-blue));
  color: var(--white);
  padding: 1.5rem 2rem 2.5rem 2rem;
  text-align: center;
  border-radius: 0 0 2rem 2rem;
}

.result__your h3 {
  opacity: 0.8;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
}

.result__your-score {
  display: flex;
  justify-content: center;
}

.result__your-circle {
  background: linear-gradient(var(--violet-blue), var(--light-royal-blue));
  border-radius: 50%;
  width: 9rem;
  height: 9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 1.5rem;
}

.result__your-circle h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

.result__your-circle p {
  opacity: 0.5;
}

.result__your__content {
  padding-top: 1.3rem;
}

.result__your__content h2 {
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
}

.result__your__content p {
  opacity: 0.7;
  margin-top: 0.5rem;
  font-size: 1rem;
  padding: 0 1.8rem;
}

.result__content {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.result__content h3 {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
  margin-bottom: 0.7rem;
}

.result__summary {
  display: flex;
  flex-direction: column;
}

.result__summary li {
  list-style: none;
  display: flex;
  align-items: center;
  font-weight: 700;
  gap: 0.7rem;
  font-size: 1rem;
}

.result__summary p {
  font-size: 1rem;
  font-weight: 800;
}

.result__summary span {
  font-size: 1rem;
  opacity: 0.5;
  font-weight: 800;
}

.result__summary-reaction {
  background-color: hsl(0, 100%, 67%, 0.1);
  border-radius: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0.9rem;
}

.result__summary-reaction li {
  color: hsl(0, 100%, 67%);
}

.result__summary-memory {
  background-color: hsl(39, 100%, 56%, 0.1);
  border-radius: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem;
}

.result__summary-memory li {
  color: hsl(39, 100%, 56%);
}

.result__summary-verbal {
  background-color: hsl(166, 100%, 37%, 0.1);
  border-radius: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem;
}

.result__summary-verbal li {
  color: hsl(166, 100%, 37%);
}

.result__summary-visual {
  background-color: hsl(234, 85%, 45%, 0.1);
  border-radius: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem;
}

.result__summary-visual li {
  color: hsl(234, 85%, 45%);
}

.result__sumary-button {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  background-color: var(--dark-gray-blue);
  padding: 1.1rem;
  border-radius: 1.7rem;
  cursor: pointer;
  color: var(--white);
  font-weight: 700;
  margin-top: 0.25rem;
  font-size: 1.1rem;
}

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

  .result {
    background-color: var(--white);
    border-radius: 2rem;
  }

  .result {
    max-width: 735px;
    height: 512px;
    display: flex;
  }

  .result__your {
    width: 50%;
    padding: 1.5rem 2rem 2.5rem 2rem;
    border-radius: 2rem;
  }

  .result__content {
    width: 50%;
  }

  .result__your-circle {
    width: 12.5rem;
    height: 12.5rem;
  }

  .result__your-circle h1 {
    font-size: 4.4rem;
  }

  .result__your h3 {
    font-size: 1.4rem;
    margin-top: 1rem;
    letter-spacing: 0.05rem;
  }

  .result__your-score {
    margin-top: 0.85rem;
  }

  .result__your__content h2 {
    font-size: 1.9rem;
    margin-top: 0.5rem;
  }

  .result__your__content p {
    margin-top: 1rem;
    font-size: 1.1rem;
  }

  .result__content {
    padding: 2.5rem;
  }

  .result__content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.07rem;
    margin-bottom: 0.85rem;
  }

  .result__summary-reaction {
    padding: 1.1rem;
  }

  .result__sumary-button {
    margin-top: 1.45rem;
  }
}
