* {
  padding: 0px;
  margin: 0px;
}

body {
  background-color: #288ad1;
}

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

.card {
  background-color: white;
  border: 1px solid white;
  height: 300px;
  width: 200px;
  border-radius: 7px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 5px;
  box-shadow: 7px 7px 0px #1c6496;
  transform: scale(1) rotate(0);
  transition: transform 0.5s ease;
}

.left {
  display: flex;
  align-self: flex-start;
  flex-direction: column;
  font-size: 30px;
}

.middle {
  display: flex;
  align-self: center;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
  font-size: 65px;
}

.right {
  display: flex;
  align-self: flex-end;
  flex-direction: column;
  font-size: 30px;
  rotate: 180deg;
  
}

.flipped {
  rotate: 180deg;
}

.red {
  color: red;
}

.middle-section {
  display: flex;
  flex-direction:   space-between;
  gap: 10px;
  align-self: center;

}

.card:hover {
  transform: scale(1.2) rotate(15deg);
  z-index: 10;
  box-shadow: 15px 10px 22px black;
}