@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@500;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Hanken Grotesk", sans-serif;
}

body {
  height: 100dvh;
  background-color: hsl(0, 0%, 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main__card {
  width: 736px;
  height: 512px;
  background-color: hsl(0, 0%, 100%);
  box-shadow: 0 5px 20px hsl(221, 100%, 96%);
  display: grid;
  border-radius: 2rem;
  grid-template-columns: repeat(2, 1fr);
}

.left__card {
  text-align: center;
  padding: 2rem 3rem;
  background: linear-gradient(hsl(252, 100%, 67%), hsl(241, 81%, 54%));
  border-radius: 2rem;
}
.left__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(241, 100%, 89%);
}
.left__card-result {
  width: 12rem;
  height: 12rem;
  background: linear-gradient(hsl(256, 72%, 46%), hsla(241, 72%, 46%, 0));
  margin: 2rem auto;
  padding-top: 49px;
  border-radius: 50%;
}
.left__card-result-main {
  font-size: 3.5rem;
  font-weight: 800;
  color: hsl(0, 0%, 100%);
}
.left__card-result-sec {
  color: hsl(241, 100%, 89%);
}
.left__card-emph {
  font-size: 1.8rem;
  font-weight: 500;
  color: hsl(0, 0%, 100%);
  margin-bottom: 1rem;
}
.left__card-info {
  font-size: 1rem;
  font-weight: 400;
  color: hsl(221, 100%, 96%);
  padding: 0 1.2rem;
}

.right__card {
  padding: 2rem;
}
.right__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(224, 30%, 27%);
  margin-bottom: 2rem;
}
.right__card-results .reaction {
  display: flex;
  background-color: hsla(0, 100%, 67%, 0.1);
  padding: 1rem;
  margin: 1.2rem 0;
  border-radius: 0.5rem;
}
.right__card-results .reaction-name {
  color: hsl(0, 100%, 67%);
  margin-left: 0.5rem;
}
.right__card-results .reaction-score {
  margin-left: auto;
  font-weight: 700;
  color: hsla(224, 30%, 27%, 0.5);
}
.right__card-results .reaction-score-emph {
  color: hsl(224, 30%, 27%);
}
.right__card-results .memory {
  display: flex;
  background-color: hsla(39, 100%, 56%, 0.1);
  padding: 1rem;
  margin: 1.2rem 0;
  border-radius: 0.5rem;
}
.right__card-results .memory-name {
  color: hsl(39, 100%, 56%);
  margin-left: 0.5rem;
}
.right__card-results .memory-score {
  margin-left: auto;
  font-weight: 700;
  color: hsla(224, 30%, 27%, 0.5);
}
.right__card-results .memory-score-emph {
  color: hsl(224, 30%, 27%);
}
.right__card-results .verbal {
  display: flex;
  background-color: hsla(166, 100%, 37%, 0.1);
  padding: 1rem;
  margin: 1.2rem 0;
  border-radius: 0.5rem;
}
.right__card-results .verbal-name {
  color: hsl(166, 100%, 37%);
  margin-left: 0.5rem;
}
.right__card-results .verbal-score {
  margin-left: auto;
  font-weight: 700;
  color: hsla(224, 30%, 27%, 0.5);
}
.right__card-results .verbal-score-emph {
  color: hsl(224, 30%, 27%);
}
.right__card-results .visual {
  display: flex;
  background-color: hsla(234, 85%, 45%, 0.1);
  padding: 1rem;
  margin: 1.2rem 0;
  border-radius: 0.5rem;
}
.right__card-results .visual-name {
  color: hsl(234, 85%, 45%);
  margin-left: 0.5rem;
}
.right__card-results .visual-score {
  margin-left: auto;
  font-weight: 700;
  color: hsla(224, 30%, 27%, 0.5);
}
.right__card-results .visual-score-emph {
  color: hsl(224, 30%, 27%);
}
.right__card-btn {
  padding: 1rem;
  margin-top: 2rem;
  width: 100%;
  background: hsl(224, 30%, 27%);
  border: none;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: hsl(0, 0%, 100%);
  cursor: pointer;
}
.right__card-btn:hover {
  background: linear-gradient(hsl(252, 100%, 67%), hsl(241, 81%, 54%));
}

.footer {
  text-align: center;
  padding: 1rem;
}
.footer a {
  color: hsl(241, 81%, 54%);
}

@media screen and (max-width: 768px) {
  .main__card {
    width: 100dvw;
    height: 100dvh;
    border-radius: unset;
    grid-template-columns: 1fr;
  }
  .left__card {
    text-align: center;
    border-radius: 0 0 2rem 2rem;
  }
  .left__card-result {
    width: 9rem;
    height: 9rem;
    padding-top: 25px;
  }
}/*# sourceMappingURL=style.css.map */