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

html {
  font-family: "Hanken Grotesk", Verdana, Geneva, Tahoma, sans-serif;
  font-size: clamp(16px, 2.3vw, 22px);
  font-weight: 400;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  width: 100%;
}
@media (min-width: 768px) {
  body {
    background-color: hsl(221, 100%, 96%);
    padding: 2rem;
  }
}

main {
  width: 100%;
  background-color: hsl(0, 0%, 100%);
}
@media (min-width: 768px) {
  main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: auto;
    border-radius: 2rem;
    max-width: 45rem;
    box-shadow: 0 1rem 2rem hsla(224, 88%, 38%, 0.2);
  }
}

h1 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 2rem 0;
}

h2 {
  font-size: 1.1rem;
  color: hsl(224, 30%, 27%);
  margin: 0 0 2rem 0;
}

.overall {
  width: 100%;
  background: linear-gradient(to bottom, hsl(252, 100%, 67%), hsl(241, 81%, 54%));
  color: hsl(241, 100%, 89%);
  text-align: center;
  padding: 2rem;
  border-radius: 0 0 2rem 2rem;
}
@media (min-width: 768px) {
  .overall {
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
}
.overall strong {
  color: hsl(0, 0%, 100%);
  font-size: 1.5rem;
  font-weight: 600;
}
.overall p {
  margin: 1rem 2rem;
}
.overall p.circle {
  background: linear-gradient(to bottom, hsl(256, 72%, 46%), hsla(241, 72%, 46%, 0));
  height: 10rem;
  width: 10rem;
  border-radius: 5rem;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
@media (min-width: 768px) {
  .overall p.circle {
    height: 12rem;
    width: 12rem;
    border-radius: 6rem;
  }
}
.overall p.circle strong {
  font-size: 4rem;
  font-weight: 700;
}

.summary {
  padding: 2rem;
}

ul {
  list-style: none;
}
ul li {
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
  display: flex;
  gap: 1rem;
  color: hsla(224, 30%, 27%, 0.5);
  font-weight: 600;
}
ul li.reaction {
  background-color: hsla(0, 100%, 67%, 0.08);
}
ul li.reaction .category {
  color: hsl(0, 100%, 67%);
}
ul li.memory {
  background-color: hsla(39, 100%, 56%, 0.08);
}
ul li.memory .category {
  color: hsl(39, 100%, 56%);
}
ul li.verbal {
  background-color: hsla(166, 100%, 37%, 0.08);
}
ul li.verbal .category {
  color: hsl(166, 100%, 37%);
}
ul li.visual {
  background-color: hsla(234, 85%, 45%, 0.08);
}
ul li.visual .category {
  color: hsl(234, 85%, 45%);
}
ul li .category {
  margin-right: auto;
  font-weight: 400;
}
ul li strong {
  color: hsl(224, 30%, 27%);
  font-weight: 600;
}

a.btn {
  display: block;
  text-decoration: none;
  text-align: center;
  background: linear-gradient(to bottom, hsl(256, 72%, 46%) 10%, hsl(241, 72%, 46%) 25%, hsl(224, 30%, 27%) 50%);
  background-size: 100% 400%;
  background-position: bottom;
  padding: 1rem 2rem;
  border-radius: 2rem;
  color: hsl(0, 0%, 100%);
  width: 100%;
  margin: 2rem 0 0 0;
  font-family: "Hanken Grotesk", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  transition: background-position 0.3s;
}
a.btn:hover, a.btn:focus, a.btn:active {
  background-position: top;
}

footer {
  margin-top: auto;
  padding: 1rem;
}/*# sourceMappingURL=styles.css.map */