body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b3d2e;
  color: white;
}

/* HOME */
.home {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.top {
  text-align: center;
  padding: 10px;
}

/* BUTTON */
.btn {
  background: #ffffff;
  color: #0b3d2e;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  margin: 10px;
  font-weight: bold;
}

/* TABLE */
.table {
  width: 95%;
  margin: auto;
  background: #145c43;
  border-radius: 20px;
  padding: 15px;
  min-height: 80vh;
}

/* DISCARD PILE */
.discard {
  width: 90px;
  height: 130px;
  background: white;
  color: black;
  margin: 20px auto;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

/* PLAYER HAND */
.hand {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

/* CARD */
.card {
  width: 55px;
  height: 85px;
  background: white;
  color: black;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
}