@font-face {
  font-family: "HankenGrotesk";
  src: url("../assets/fonts/HankenGrotesk-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-display: swap;
  font-variation-settings: "wght" 100 900;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "HankenGrotesk", sans-serif;
  font-weight: 500;
  background-color: hsl(221, 100%, 96%);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.container {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.container .result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: linear-gradient(to bottom, hsl(252, 100%, 67%), hsl(241, 81%, 54%));
  padding: 1.5rem;
  border-radius: 0 0 32px 32px;
}
.container .result__title {
  color: hsl(241, 100%, 89%);
  font-size: 12px;
  margin-block-end: 10px;
}
.container .result__score {
  background: linear-gradient(to bottom, hsl(256, 72%, 46%), hsla(241, 72%, 46%, 0));
  color: hsl(241, 100%, 89%);
  width: 150px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 10px;
  aspect-ratio: 1;
}
.container .result__score .number {
  font-size: 36px;
  font-weight: 700;
  color: hsl(0, 0%, 100%);
  margin-bottom: 5px;
}
.container .result__feedback {
  color: hsl(241, 100%, 89%);
  font-size: 12px;
  margin-bottom: 10px;
  text-align: center;
  padding-inline: 20px;
}
.container .result__feedback .title {
  font-size: 18px;
  color: hsl(0, 0%, 100%);
  margin-bottom: 10px;
}
.container .summary {
  padding-inline: 1.5rem;
  padding-block: 1rem;
}
.container .summary__title {
  color: hsl(224, 30%, 27%);
  font-size: 1.125rem;
  font-weight: 700;
  margin-block-end: 1rem;
}
.container .summary__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.container .summary__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1rem;
  padding-inline: 1rem;
  border-radius: 0.8rem;
}
.container .summary__item-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.container .summary__item-icon {
  width: 20px;
  height: 20px;
}
.container .summary__item-title {
  font-weight: 500;
}
.container .summary__item-score {
  color: gray;
  font-weight: 700;
}
.container .summary__item-score span {
  color: hsl(224, 30%, 27%);
}
.container .summary__item--reaction {
  background-color: hsla(0, 100%, 67%, 0.1);
}
.container .summary__item--reaction .summary__item-title {
  color: hsl(0, 100%, 67%);
}
.container .summary__item--memory {
  background-color: hsla(39, 100%, 56%, 0.1);
}
.container .summary__item--memory .summary__item-title {
  color: hsl(39, 100%, 56%);
}
.container .summary__item--verbal {
  background-color: hsla(166, 100%, 37%, 0.1);
}
.container .summary__item--verbal .summary__item-title {
  color: hsl(166, 100%, 37%);
}
.container .summary__item--visual {
  background-color: hsla(234, 85%, 45%, 0.1);
}
.container .summary__item--visual .summary__item-title {
  color: hsl(234, 85%, 45%);
}
.container .summary__button {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 2rem;
  background-color: hsl(224, 30%, 27%);
  color: hsl(0, 0%, 100%);
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease-in;
}
.container .summary__button:hover {
  background: linear-gradient(to bottom, hsl(252, 100%, 67%), hsl(241, 81%, 54%));
}
.container .error-message {
  color: hsl(0, 100%, 67%);
  font-size: 12px;
  margin-block-start: 10px;
}

@media screen and (min-width: 376px) {
  body {
    min-height: 100vh;
    display: grid;
    place-items: center;
  }
  .container {
    width: 800px;
    min-height: 512px;
    margin: auto;
    flex-direction: row;
    border-radius: 32px;
    background: hsl(0, 0%, 100%);
    box-shadow: 0px 30px 60px rgba(61, 108, 236, 0.15);
  }
  .container .result {
    width: 50%;
    border-radius: 32px;
    padding: 38px 40px;
  }
  .container .result__title {
    font-size: 24px;
    margin-bottom: 35px;
  }
  .container .result__score {
    width: 200px;
    height: 200px;
    margin-bottom: 28px;
  }
  .container .result__score .number {
    font-size: 72px;
  }
  .container .result__feedback {
    font-size: 18px;
    padding-inline: 0;
  }
  .container .result__feedback .title {
    font-size: 32px;
    margin-bottom: 14px;
  }
  .container .summary {
    width: 50%;
    padding: 38px 40px;
  }
  .container .summary__title {
    font-size: 24px;
    margin-bottom: 28px;
  }
  .container .summary__item {
    padding: 20px;
  }
}

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