#playing-cards {
  display: flex;
justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
background-color: #cee1f4;
margin: 3px;
border-radius: 10px;
}

.card {
  display: flex;
justify-content: space-between;
  width: 150px;
  height: 250px;
  border: 2px solid black;
 border-radius: 10px; background-color: whitesmoke;
 font-family: sans-serif;
 font-weight: bold; 
 padding: 4px;
 box-shadow: 0 0 10px 0 gray;
}

.left {
  align-self: flex-start;
  padding:2px;
  font-size: 2rem;
}

.middle {
  align-self: center;
  display: flex;
flex-direction: column;
font-size: 60px;
justify-content: center;

}

.right {
  align-self: flex-end;
  transform: rotate(180deg);
  font-size: 2rem;
}

span {
  transform: rotate(180deg);
}

.two, .four {
  color: red;
}
