* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: Thistle;
}
#playing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  /* margin-top: 100px; This margin is needed to pass the lab but I wanted to center the design afterwards */
}
.card {
  background-color: white;
  border: 1px solid black;
  border-radius: 10px;
  box-shadow: 2px 2px 2px gray;
  min-width: 250px;
  max-width: 250px;
  height: 350px;
  font-size: 30px;
  font-weight: bold;
  padding: 5px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.left {
  align-self: flex-start;
}
.middle {
  flex-direction: column;
  align-self: center;
  transform: scale(2.5);
}

.right {
  align-self: flex-end;
  transform: rotate(180deg);
}
.flipped {
  transform: rotate(180deg);
}
.red {
  color: red;
}
