
html {
  font-size: 16px;
}
body {
  padding: 0;
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI",
    Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
  font-weight: 500;
  line-height: 1.5;
  background-color: #454545;
}
@supports (font-variation-settings: normal) {
  body {
    font-family: "Inter var", -apple-system, BlinkMacSystemFont, Roboto,
      "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol";
  }
}
#a {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
}
#pack-list {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 1rem;
  list-style: none;
  overflow-y: auto;
}
.deck-btn {
  display: block;
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.5rem;
  border: 0;
  font: inherit;
  line-height: 1.15;
  text-align: left;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.8);
  /* text-shadow: 0 1px 0 #acacac; */
  border-radius: 0.5rem;
  cursor: pointer;
  appearance: none;
}
.deck-btn:hover,
.deck-btn:focus {
  background-color: #004708;
}
.deck-btn:active {
  color: #00a50b;
  background-color: #000;
}

@media (min-width: 768px) {
  #pack-list {
    width: 20%;
    min-width: 300px;
    padding: 1rem 2rem;
    background-color: rgba(142, 142, 142, 0.4);
  }
  .deck-btn {
    background-color: #000000;
  }
}

.deck-icon {
  display: inline-block;
  width: 2rem;
  text-align: center;
}
