* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #1a6b3c;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
}

#playing-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  width: 120px;
  height: 170px;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #ccc;
  padding: 8px;
  display: flex;
  justify-content: space-between;
}

.left {
  align-self: flex-start;
  text-align: center;
  font-weight: bold;
}

.middle {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 28px;
}

.right {
  align-self: flex-end;
  text-align: center;
  font-weight: bold;
  transform: rotate(180deg);
}

.red { color: #c0392b; }
.black { color: #111; }
