body {
  background-color: #E4CCE6;
}

#playing-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  box-sizing: border-box;
  font-size: 2rem;
  font-weight: bold;
  background-color: #F5F5F5;
  border: 1px solid black;
  border-radius: 10px;
  box-shadow: 2px 2px 4px #545454;
  height: 350px;
  width: 250px;
  min-width: 250px;
  display: flex;
  justify-content: space-between;
}

.left {
  align-self: flex-start;
  padding-left: 5px;
  flex-direction: column;
  text-align: center;
}

.middle {
  display: flex;
  flex-direction: column;
  align-self: center;
  font-size: 5rem;
  text-align: center;
}

.right {
  display: flex;
  flex-direction: column-reverse;
  align-self: flex-end;
  padding-left: 5px;
  transform: rotate(180deg);
  text-align: center;
}

.symbol-rotate {
  transform: rotate(180deg);
}

.red {
  color: red;
}
