:root {
  --cardmult: 40;
}

* {
  padding: 0;
  margin: 0;
}

body {
  overflow: hidden;
}

.league-gothic {
  font-family: "League Gothic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.centered-scale {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(3.5);
}

#hand {
  /* width: 60%; */
  height: calc(25vh);
  /* display: block; */

  /* border: 1px solid black; */
}

.card {
  width: calc(10vw);
  height: calc(10vw);
  /* width: calc(2.5px * var(--cardmult));
    height: calc(3.5px * var(--cardmult)); */
  position: absolute;
  display: block;
  bottom: -100px;
  left: calc(50% - calc(1vw));
  background-color: white;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  z-index: 1;
  transition: 0.5s left ease, 0.5s bottom ease;
  user-select: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.space {
  margin: 0;
  padding: 0;
}

.card:hover {
  /* Add hover styles if needed */
}

.card > span {
  display: block;
}

.card .value {
  font-weight: bolder;
  font-size: 30px;
  margin: 5px;
}

.card .suit {
  /* Add suit styles if needed */
}
