@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Special+Gothic+Expanded+One&display=swap");
/*
* COLORS 
* dm = dark mode
* lm = light mode
*/
:root {
  --dm-ink: #14171C;
  --dm-bezel: #0B0D10;
  --dm-panel: #1C2129;
  --dm-panel-row: #141820;
  --dm-text-hi: #E8EAED;
  --dm-text-lo: #8A93A3;
  --dm-mint: #4FBF8B;
  --dm-coral: #E8604C;
  --dm-amber: #F2B84B;
  --dm-amber-ink: #1C1200;
  --dm-screen-bg: #F5F6F8;
}

.light-mode {
  --lm-screen-bg: #F5F6F8;
  --lm-bezel: #0B0D10;
}

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

html, body {
  height: 100%;
  position: relative;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dm-ink);
  padding: 24px;
}

#skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background-color: black;
  color: white;
  opacity: 0;
}

.skip-link:focus {
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 60;
}

/*
* COLORS 
* dm = dark mode
* lm = light mode
*/
:root {
  --dm-ink: #14171C;
  --dm-bezel: #0B0D10;
  --dm-panel: #1C2129;
  --dm-panel-row: #141820;
  --dm-text-hi: #E8EAED;
  --dm-text-lo: #8A93A3;
  --dm-mint: #4FBF8B;
  --dm-coral: #E8604C;
  --dm-amber: #F2B84B;
  --dm-amber-ink: #1C1200;
  --dm-screen-bg: #F5F6F8;
}

.light-mode {
  --lm-screen-bg: #F5F6F8;
  --lm-bezel: #0B0D10;
}

.app {
  width: 100%;
  max-width: 380px;
}

.chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 16px;
}
.chrome-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dm-text-hi);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.chrome-stats {
  display: none;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.chrome-stats.active {
  display: flex;
}

.stat {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--dm-text-lo);
}
.stat.score {
  color: var(--dm-text-hi);
}
.stat.warn {
  color: var(--dm-coral);
}

.phone-bezel {
  background: var(--dm-bezel);
  border-radius: 2rem;
  padding: 8px;
}

.phone-screen {
  background: var(--dm-panel);
  border-radius: 1.6rem;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  height: 600px;
  scrollbar-width: none; /* DISABLE THIS FOR ACCESSIBILITY */
}

.screen-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.intro {
  height: 100%;
  background: var(--dm-panel);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 32px;
}
.intro h1 {
  color: var(--dm-bezel);
  font-size: 18px;
  font-weight: 600;
  margin: 12px 0 8px;
}
.intro p {
  color: var(--dm-text-lo);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.btn-amber {
  background: var(--dm-amber);
  color: var(--dm-amber-ink);
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.btn-amber:hover {
  filter: brightness(1.05);
}

/*
* COLORS 
* dm = dark mode
* lm = light mode
*/
:root {
  --dm-ink: #14171C;
  --dm-bezel: #0B0D10;
  --dm-panel: #1C2129;
  --dm-panel-row: #141820;
  --dm-text-hi: #E8EAED;
  --dm-text-lo: #8A93A3;
  --dm-mint: #4FBF8B;
  --dm-coral: #E8604C;
  --dm-amber: #F2B84B;
  --dm-amber-ink: #1C1200;
  --dm-screen-bg: #F5F6F8;
}

.light-mode {
  --lm-screen-bg: #F5F6F8;
  --lm-bezel: #0B0D10;
}

.login {
  height: 100%;
  background: var(--dm-panel);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
}
.login img {
  width: 200%;
}
.login-form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
}
.login-form-field input {
  padding: 0 0.3em;
  position: relative;
}
.login-form-field.error {
  background: #ff9999;
}
.login-form-field #password {
  margin-bottom: 2em;
}
.login-form-label {
  color: var(--dm-text-hi);
  text-align: left;
}
.login-form-btns {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 2em;
}
.login-form-btns #signupBtn {
  background: #fff;
}
.login-form-btns #signupBtn:hover {
  background: rgb(216.75, 216.75, 216.75);
}
.login .accessibility-settings-btn {
  background: var(--dm-amber);
  color: var(--dm-amber-ink);
  border: none;
  padding: 12px 12px 4px 12px;
  border-radius: 999px;
  cursor: pointer;
  position: absolute;
  bottom: 30px;
  right: 30px;
  text-align: right;
}
.login .accessibility-settings-btn:hover {
  filter: brightness(1.05);
}

/* The switch - the box around the slider */
.switch {
  position: absolute;
  top: 30px;
  right: 30px;
  display: inline-block;
  width: 60px;
  height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  display: none;
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 0px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(28px);
  -ms-transform: translateX(28px);
  transform: translateX(28px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/*
* COLORS 
* dm = dark mode
* lm = light mode
*/
:root {
  --dm-ink: #14171C;
  --dm-bezel: #0B0D10;
  --dm-panel: #1C2129;
  --dm-panel-row: #141820;
  --dm-text-hi: #E8EAED;
  --dm-text-lo: #8A93A3;
  --dm-mint: #4FBF8B;
  --dm-coral: #E8604C;
  --dm-amber: #F2B84B;
  --dm-amber-ink: #1C1200;
  --dm-screen-bg: #F5F6F8;
}

.light-mode {
  --lm-screen-bg: #F5F6F8;
  --lm-bezel: #0B0D10;
}

/* Toggle Default State */
.theme {
  display: flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}

.theme__fill,
.theme__icon {
  transition: 0.3s;
}

.theme__fill {
  background-color: var(--bg);
  display: block;
  mix-blend-mode: difference;
  position: fixed;
  inset: 0;
  height: 100%;
  transform: translateX(-100%);
}

.theme__icon,
.theme__toggle {
  z-index: 1;
}

.theme__icon,
.theme__icon-part {
  position: absolute;
}

/* The location of the icon*/
.theme__icon {
  display: block;
  top: 0.1em;
  left: 0.5em;
  width: 1.5em;
  height: 1.5em;
}

.theme__icon-part {
  border-radius: 50%;
  top: calc(15% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  transition: box-shadow var(--transDur) ease-in-out, opacity var(--transDur) ease-in-out, transform var(--transDur) ease-in-out;
  transform: scale(0.5);
  background: #000;
}

.theme__icon-part ~ .theme__icon-part {
  border-radius: 0.05em;
  top: 15%;
  left: calc(50% - 0.05em);
  transform: rotate(0deg) translateY(0.5em);
  transform-origin: 50% 0;
  width: 0.1em;
  height: 0.2em;
}

.theme__icon-part:nth-child(3) {
  transform: rotate(45deg) translateY(0.45em);
}

.theme__icon-part:nth-child(4) {
  transform: rotate(90deg) translateY(0.45em);
}

.theme__icon-part:nth-child(5) {
  transform: rotate(135deg) translateY(0.45em);
}

.theme__icon-part:nth-child(6) {
  transform: rotate(180deg) translateY(0.45em);
}

.theme__icon-part:nth-child(7) {
  transform: rotate(225deg) translateY(0.45em);
}

.theme__icon-part:nth-child(8) {
  transform: rotate(270deg) translateY(0.5em);
}

.theme__icon-part:nth-child(9) {
  transform: rotate(315deg) translateY(0.5em);
}

.theme__label,
.theme__toggle,
.theme__toggle-wrap {
  position: relative;
}

.theme__toggle,
.theme__toggle:before {
  display: block;
}

/* The slider bar*/
.theme__toggle {
  background-color: #383838;
  border-radius: 25%/50%;
  box-shadow: 0 0 0 0.125em var(--primaryT);
  padding: 0.25em;
  width: 5em;
  height: 1.5em;
  -webkit-appearance: none;
  appearance: none;
  transition: background-color var(--transDur) ease-in-out, box-shadow 0.15s ease-in-out, transform var(--transDur) ease-in-out;
  margin-top: -0.5em;
}

/* The slider circle*/
.theme__toggle:before {
  background-color: hsl(48, 90%, 55%);
  border-radius: 50%;
  content: "";
  width: 2em;
  height: 2em;
  transition: 0.3s;
  margin-top: -0.4em;
}

.theme__toggle:focus {
  box-shadow: 0 0 0 0.125em var(--primary);
  outline: transparent;
}

/* Toggle Checked State*/
.theme__toggle:checked {
  background-color: hsl(198, 90%, 15%);
}

/* Circle when checked*/
.theme__toggle:checked:before,
.theme__toggle:checked ~ .theme__icon {
  transform: translateX(2.5em);
}

.theme__toggle:checked:before {
  background-color: hsl(198, 90%, 55%);
}

.theme__toggle:checked ~ .theme__fill {
  transform: translateX(0);
}

.theme__toggle:checked ~ .theme__icon .theme__icon-part:nth-child(1) {
  box-shadow: 0.2em -0.2em 0 0.12em hsl(0, 0%, 100%) inset;
  transform: scale(1);
  top: -0.3em;
  left: 0.25em;
}

.theme__toggle:checked ~ .theme__icon .theme__icon-part ~ .theme__icon-part {
  opacity: 0;
}

.theme__toggle:checked ~ .theme__icon .theme__icon-part:nth-child(2) {
  transform: rotate(45deg) translateY(0.8em);
}

.theme__toggle:checked ~ .theme__icon .theme__icon-part:nth-child(3) {
  transform: rotate(90deg) translateY(0.8em);
}

.theme__toggle:checked ~ .theme__icon .theme__icon-part:nth-child(4) {
  transform: rotate(135deg) translateY(0.8em);
}

.theme__toggle:checked ~ .theme__icon .theme__icon-part:nth-child(5) {
  transform: rotate(180deg) translateY(0.8em);
}

.theme__toggle:checked ~ .theme__icon .theme__icon-part:nth-child(6) {
  transform: rotate(225deg) translateY(0.8em);
}

.theme__toggle:checked ~ .theme__icon .theme__icon-part:nth-child(7) {
  transform: rotate(270deg) translateY(0.8em);
}

.theme__toggle:checked ~ .theme__icon .theme__icon-part:nth-child(8) {
  transform: rotate(315deg) translateY(0.8em);
}

.theme__toggle:checked ~ .theme__icon .theme__icon-part:nth-child(9) {
  transform: rotate(360deg) translateY(0.8em);
}

.theme__toggle-wrap {
  margin: 0 0.75em;
}

@supports selector(:focus-visible) {
  .theme__toggle:focus {
    box-shadow: 0 0 0 0.125em var(--primaryT);
  }
  .theme__toggle:focus-visible {
    box-shadow: 0 0 0 0.125em var(--primary);
  }
}
.accessibility-settings-overlay {
  display: none;
  background: var(--dm-panel);
  border-radius: 1.6rem;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  height: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2em 1.5em;
  text-align: left;
  color: var(--dm-text-hi);
}
.accessibility-settings-overlay h2 {
  font-size: 1.65rem;
  margin-bottom: 1em;
}
.accessibility-settings-overlay h3 {
  font-size: 1.3rem;
  display: flex;
  margin-top: 0.25em;
}
.accessibility-settings-overlay h3 span {
  margin-left: 0.5em;
}
.accessibility-settings-overlay h4 {
  font-size: 1rem;
}
.accessibility-settings-overlay-desc {
  margin-bottom: 3em;
}
.accessibility-settings-overlay .seperator {
  width: 25%;
  height: 0.65vh;
  background: #E8604C;
  margin: 1.5em 0;
}
.accessibility-settings-overlay .visual-settings-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25em;
}
.accessibility-settings-overlay .setting-topic {
  margin-bottom: 1em;
}
.accessibility-settings-overlay .setting-topic a {
  text-decoration: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: var(--dm-text-hi);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.accessibility-settings-overlay .setting-topic a .settings-right-caret {
  margin-left: auto;
}
.accessibility-settings-overlay .setting-topic {
  margin-bottom: 1em;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: var(--dm-text-hi);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.accessibility-settings-overlay .setting-topic:hover {
  cursor: pointer;
}
.accessibility-settings-overlay .setting-topic .settings-right-caret {
  margin-left: auto;
}

.setting-section {
  margin-bottom: 3em;
}

.audio-icon {
  font-size: 1.75rem;
}

.accessibility-settings-close-btn {
  background: var(--dm-amber);
  color: var(--dm-amber-ink);
  border: none;
  padding: 12px 12px 4px 12px;
  border-radius: 999px;
  cursor: pointer;
  position: absolute;
  bottom: 30px;
  right: 30px;
  text-align: right;
}
.accessibility-settings-close-btn:hover {
  filter: brightness(1.05);
}

.accessibility-settings-back-btn {
  background: var(--dm-amber);
  color: var(--dm-amber-ink);
  border: none;
  padding: 12px 12px 4px 12px;
  border-radius: 999px;
  cursor: pointer;
  position: absolute;
  bottom: 30px;
  left: 30px;
  text-align: right;
}
.accessibility-settings-back-btn:hover {
  filter: brightness(1.05);
}

/*
* COLORS 
* dm = dark mode
* lm = light mode
*/
:root {
  --dm-ink: #14171C;
  --dm-bezel: #0B0D10;
  --dm-panel: #1C2129;
  --dm-panel-row: #141820;
  --dm-text-hi: #E8EAED;
  --dm-text-lo: #8A93A3;
  --dm-mint: #4FBF8B;
  --dm-coral: #E8604C;
  --dm-amber: #F2B84B;
  --dm-amber-ink: #1C1200;
  --dm-screen-bg: #F5F6F8;
}

.light-mode {
  --lm-screen-bg: #F5F6F8;
  --lm-bezel: #0B0D10;
}

.signup {
  min-height: 100%;
  background: var(--dm-panel);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
}
.signup img {
  width: 100%;
  margin-bottom: 1em;
}

.signup-intro {
  color: var(--dm-text-hi);
  text-align: left;
  margin-bottom: 1em;
}
.signup-intro-header {
  font-size: 1.75rem;
}

.signup-form {
  width: 100%;
  margin-bottom: 2em;
}
.signup-form fieldset {
  border: none;
}
.signup-form legend {
  color: var(--dm-text-hi);
  text-align: left;
  margin-bottom: 0.65em;
  font-size: 1.25rem;
  color: var(--dm-amber);
}
.signup-form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
}
.signup-form-field label {
  color: var(--dm-text-hi);
  text-align: left;
}
.signup-form-field-label-required::after {
  content: " *";
  color: red;
}
.signup-form-field input {
  padding: 0 0.3em;
  position: relative;
}
.signup-form-field.error {
  background: #ff9999;
}
.signup-form #signupSubmitBtn {
  margin-top: 2em;
}

.error-message {
  color: #ff4d4d;
  font-size: 0.85rem;
  display: none;
  margin-top: 4px;
  min-height: 18px;
}

input.invalid {
  border: 1px solid #ff4d4d;
  background-color: #ffe6e6;
}

.password-error-help {
  margin-top: 0.25em;
}
.password-error-help li {
  text-align: left;
}

/*
* COLORS 
* dm = dark mode
* lm = light mode
*/
:root {
  --dm-ink: #14171C;
  --dm-bezel: #0B0D10;
  --dm-panel: #1C2129;
  --dm-panel-row: #141820;
  --dm-text-hi: #E8EAED;
  --dm-text-lo: #8A93A3;
  --dm-mint: #4FBF8B;
  --dm-coral: #E8604C;
  --dm-amber: #F2B84B;
  --dm-amber-ink: #1C1200;
  --dm-screen-bg: #F5F6F8;
}

.light-mode {
  --lm-screen-bg: #F5F6F8;
  --lm-bezel: #0B0D10;
}

.username-create {
  min-height: 100%;
  background: var(--dm-panel);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
}
.username-create img {
  width: 100%;
  margin-bottom: 1em;
}

.username-create-intro {
  color: var(--dm-text-hi);
  text-align: left;
  margin-bottom: 1em;
}
.username-create-intro-header {
  font-size: 1.75rem;
  margin-bottom: 0.5em;
}

.username-create-form {
  width: 100%;
  margin-bottom: 3em;
}
.username-create-form fieldset {
  border: none;
  margin-bottom: 2em;
}
.username-create-form legend {
  color: var(--dm-text-hi);
  text-align: left;
  margin-bottom: 0.65em;
  font-size: 1.25rem;
  color: var(--dm-amber);
}
.username-create-form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
}
.username-create-form-field label {
  color: var(--dm-text-hi);
  text-align: left;
}
.username-create-form-field-label-required::after {
  content: " *";
  color: red;
}
.username-create-form-field input {
  padding: 0 0.3em;
  position: relative;
}
.username-create-form-field.error {
  background: #ff9999;
}
.username-create-form-field #password {
  margin-bottom: 2em;
}
.username-create-form #signupCreateAccountBtn {
  margin-top: 1em;
}

/*
* COLORS 
* dm = dark mode
* lm = light mode
*/
:root {
  --dm-ink: #14171C;
  --dm-bezel: #0B0D10;
  --dm-panel: #1C2129;
  --dm-panel-row: #141820;
  --dm-text-hi: #E8EAED;
  --dm-text-lo: #8A93A3;
  --dm-mint: #4FBF8B;
  --dm-coral: #E8604C;
  --dm-amber: #F2B84B;
  --dm-amber-ink: #1C1200;
  --dm-screen-bg: #F5F6F8;
}

.light-mode {
  --lm-screen-bg: #F5F6F8;
  --lm-bezel: #0B0D10;
}

.account-confirm {
  min-height: 100%;
  background: var(--dm-panel);
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 0 32px;
}
.account-confirm img {
  width: 100%;
  margin-bottom: 1em;
}

.account-confirm-intro {
  color: var(--dm-text-hi);
  text-align: left;
  margin-bottom: 1em;
}
.account-confirm-intro-header {
  font-size: 1.75rem;
  margin-bottom: 0.5em;
}

.account-confirm-form {
  width: 100%;
  margin-bottom: 3em;
}
.account-confirm-form fieldset {
  border: none;
  margin-bottom: 2em;
}
.account-confirm-form legend {
  color: var(--dm-text-hi);
  text-align: left;
  margin-bottom: 0.65em;
  font-size: 1.25rem;
  color: var(--dm-amber);
}
.account-confirm-form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
}
.account-confirm-form-field label {
  color: var(--dm-text-hi);
  text-align: left;
}
.account-confirm-form-field-label-required::after {
  content: " *";
  color: red;
}
.account-confirm-form-field input {
  padding: 0 0.3em;
  position: relative;
}
.account-confirm-form-field.error {
  background: #ff9999;
}
.account-confirm-form-field #password {
  margin-bottom: 2em;
}
.account-confirm-form-btns {
  display: flex;
  justify-content: space-evenly;
}
.account-confirm-form-btns #signupBtn {
  background: #fff;
}
.account-confirm-form-btns #signupBtn:hover {
  background: rgb(216.75, 216.75, 216.75);
}

/*
* COLORS 
* dm = dark mode
* lm = light mode
*/
:root {
  --dm-ink: #14171C;
  --dm-bezel: #0B0D10;
  --dm-panel: #1C2129;
  --dm-panel-row: #141820;
  --dm-text-hi: #E8EAED;
  --dm-text-lo: #8A93A3;
  --dm-mint: #4FBF8B;
  --dm-coral: #E8604C;
  --dm-amber: #F2B84B;
  --dm-amber-ink: #1C1200;
  --dm-screen-bg: #F5F6F8;
}

.light-mode {
  --lm-screen-bg: #F5F6F8;
  --lm-bezel: #0B0D10;
}

.games {
  position: relative;
}
.games .accessibility-settings-btn {
  background: var(--dm-amber);
  color: var(--dm-amber-ink);
  border: none;
  padding: 12px 12px 4px 12px;
  border-radius: 999px;
  cursor: pointer;
  position: absolute;
  bottom: -70px;
  right: 30px;
  text-align: right;
}
.games .accessibility-settings-btn:hover {
  filter: brightness(1.05);
}

.game-screen {
  padding: 0 2.5em;
  color: var(--dm-text-hi);
}
.game-screen-banner {
  width: 100%;
  margin-bottom: 2em;
}
.game-screen-title {
  text-align: center;
  font-size: 2rem;
}
.game-screen-intro-text {
  text-align: center;
  margin-bottom: 2em;
}
.game-screen-topic-title {
  font-size: 1.3rem;
}
.game-screen .topic-grid {
  margin-bottom: 6em;
}
.game-screen .topic-card {
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 4px;
  border-radius: 12px;
  height: 70px; /* Keep each card the same height */
  margin-bottom: 1em;
  padding: 0.5em;
  display: flex;
  align-items: center;
  background: #E8604C;
  color: #14171C;
}
.game-screen .topic-card-icon {
  margin-right: 1em;
  border-right: 2px solid black;
  padding-right: 0.5em;
  padding-top: 0.3em;
}
.game-screen .topic-card-title {
  font-size: 1.35rem;
  padding-top: 0.4em;
}
.game-screen .easy {
  background: var(--dm-mint);
}
.game-screen .medium {
  background: var(--dm-amber);
}
.game-screen .hard {
  background: var(--dm-coral);
}
.game-screen .learning {
  background: var(--dm-text-lo);
}/*# sourceMappingURL=main.css.map */