body {
  font-family: Helvetica, 'Trebuchet MS', Verdana, sans-serif;
  font-size: 15px;
}

@media (min-width: 640px) {
  body {
    font-size: 30px;
  }
}

/* @media (min-width: 768px) {}
@media (min-width: 1024px) {}
@media (min-width: 1280px) {}
@media (min-width: 1536px) {} */

dialog {
  border-radius: 10px;
  width: 80vw;
}

button {
  width: 20%;
  margin: auto;
}

::backdrop {
  background-color: gray;
  opacity: 0.75;
}

#score {
  height: 35px;
}

#deckHeight {
  display: inline-block;
  height: 52px;
  width: 20px;
  background-color: blue;
}

#discardHeight {
  display: inline-block;
  height: 0px;
  width: 20px;
  background-color: gray;
}

.deck-height {
  min-height: 62px;
}

.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: stretch;
  width: 100%;
  align-items: flex-end;
}

.flex-col {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.flex-item {
  flex: 1;
  flex-grow: 1;
  padding: 5px;
  margin: 1px;
  text-align: center;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.hidden {
  display: none;
}

.red {
  color: red;
}

.black {
  color: black;
}

.silver {
  color: silver;
}

.card {
  border: 1px solid blue;
  border-radius: 5px;
  min-width: 15px;
  display: inline-block;
  text-align: center;
}

.clickable {
  cursor: pointer;
}

.selected {
  background-color: silver;
}

.info {
  border: 1px solid red;
  border-radius: 5px;
}

.special-bonus {
  border: 1px solid orange;
  border-radius: 5px;
}

.perm-bonus {
  border: 1px solid blue;
  border-radius: 5px;
}

.selected {
  background-color: silver;
}
