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

button {
  color: inherit;
}

body {
  font-family: monospace, sans-serif;
  text-align: center;
}

.correct {
  outline: 3px solid rgba(0, 255, 0, 0.8);
}

.incorrect {
  color: rgba(0, 0, 0, 0.3);
  outline: 3px solid rgba(255, 0, 0, 0.4);
}

.msg-wrapper-wrong {
  box-shadow: 1px 1px 5px rgba(255, 0, 0, 0.2);
  outline: 3px solid rgba(255, 0, 0, 0.2);
}

.msg-wrapper-correct {
  box-shadow: 1px 1px 5px rgba(0, 255, 0, 0.3);
  outline: 3px solid rgba(0, 255, 0, 0.3);
}

button {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgb(255, 149, 225);
  border-radius: 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  margin-block: 0.5rem;
  padding-block: 1.5rem;
}
button span {
  letter-spacing: 2px;
}

.answers {
  display: grid;
  grid-template-columns: 1fr;
  margin-inline: auto;
  width: 85%;
}

.diffCat {
  border-bottom: 1px solid rgb(0, 179, 152);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-inline: 1rem;
  padding-block: 1rem 0.75rem;
  padding-left: 0.5rem;
  position: relative;
  text-align: left;
}
.diffCat #btn-new-quest {
  border: 1px solid rgb(0, 179, 152);
  border-radius: 10px;
  height: calc(100% - 2rem);
  margin-block: 0.75rem;
  min-height: 3.5rem;
  padding-block: 0.5rem;
  position: absolute;
  right: 0.5rem;
  top: 0.25rem;
  width: 60px;
}
.diffCat #btn-new-quest span {
  display: block;
  font-size: 0.85rem;
  margin-block: 0.25rem;
}
.diffCat .category {
  line-height: 1.3;
  max-width: 30ch;
}
.diffCat span {
  font-size: 1.125rem;
  font-weight: 700;
}

.message-wrapper {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  display: none;
  margin-inline: auto;
  padding-bottom: 0.75rem;
  position: relative;
  width: 85%;
}
.message-wrapper .message {
  border-radius: 20px;
  color: rgb(0, 153, 0);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-top: 0.25rem;
  padding-top: 0.5rem;
  position: relative;
}
.message-wrapper .message-line-2 {
  display: none;
  font-size: 1.25rem;
  margin-top: 0.5rem;
}
.message-wrapper .icon {
  display: none;
  position: absolute;
  top: 0.75rem;
  width: 2rem;
}
.message-wrapper .icon-cor,
.message-wrapper .icon-inc {
  left: 0.75rem;
}
.message-wrapper .icon-hand-good,
.message-wrapper .icon-hand-bad {
  right: 0.75rem;
}
.message-wrapper .icon-hand-good {
  top: 0.5rem;
}
.message-wrapper .icon-cor {
  filter: hue-rotate(-40deg) brightness(0.8);
}
.message-wrapper .message-wrong {
  color: rgb(255, 0, 0);
}
.message-wrapper .display {
  display: block;
}

.question {
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0.75rem 1rem;
}

body {
  background-color: rgb(245, 242, 242);
  margin-inline: auto;
  max-width: 375px;
}

main {
  position: relative;
}

.brain-pic {
  opacity: 0.2;
  position: absolute;
  top: 10rem;
  transform: translateX(-50%);
  width: 525px;
  z-index: -1;
}
@media screen and (width < 525px) {
  .brain-pic {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */