html, body {
  background-color: #335E9B;
  color: #FFF3E8;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 20px;
  min-height: 100%;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

.container {
  margin: auto;
  max-width: 40rem;
  padding: 4rem 1rem 3rem 1rem;
}

h1 {
  color: #FFF3E8;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 60px;
  font-weight: normal;
  line-height: 0.9;
  margin: 0 auto 2rem auto;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}

h2 {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
  margin: 3rem 0 2rem 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}

p {
  margin: 0 auto 1rem auto;
  max-width: 28rem;
  text-align: center;
}
p a {
  color: inherit;
}

form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
form input, form button {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  padding: 0.2rem 0.3rem;
}
form button {
  cursor: pointer;
}

#results {
  margin: 4rem 0;
}

.token-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.deck-tokens[hidden] {
  display: none;
}

.deck-toggle {
  background: transparent;
  border: 1px solid #FFF3E8;
  border-radius: 0.1rem;
  color: #FFF3E8;
  cursor: pointer;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1;
  margin-left: 0.5rem;
  padding: 0.1em 0.4em;
  vertical-align: middle;
}

.token-img {
  width: 100px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.token-list {
  list-style: none;
  margin: 0 auto 2rem auto;
  max-width: 40rem;
  padding: 0;
}
.token-list li {
  border-top: 1px solid rgba(255, 243, 232, 0.2);
  padding: 0.5rem 0;
}
.token-list li:last-child {
  border-bottom: 1px solid rgba(255, 243, 232, 0.2);
}
.token-list .token-list-name {
  font-weight: bold;
}
.token-list .token-list-type {
  display: block;
  font-style: italic;
}
.token-list .token-list-rules {
  display: block;
}
.token-list .token-list-pt {
  display: block;
  font-variant-numeric: tabular-nums;
}

.copy-button {
  background: transparent;
  border: 1px solid #FFF3E8;
  border-radius: 0.1rem;
  color: #FFF3E8;
  cursor: pointer;
  display: block;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin: 0 auto 2rem auto;
  padding: 0.3em 0.8em;
  text-transform: uppercase;
}

#footer {
  font-size: 0.8rem;
}

@media print {
  html, body {
    background-color: transparent;
    color: black;
    margin: 0;
    padding: 0;
  }
  h1,
  p,
  form {
    display: none;
  }
  .deck-toggle,
  .copy-button {
    display: none;
  }
  #results img {
    break-inside: avoid;
  }
}

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