/*html {
  height: 100%;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
}*/
.carte {
  font-family: sans-serif;
  position: relative;
  width: 75px;
  height: 110px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
}

.carte.spades,
.carte.clubs {
  color: black;
}
.carte.hearts,
.carte.diamonds {
  color: red;
}

.carte-value-suit {
  display: inline-block;
  position: absolute;
}
.carte-value-suit.top {
  top: 5px;
  left: 5px;
}
.carte-value-suit.bot {
  transform: rotate(180deg);
  bottom: 5px;
  right: 5px;
}
.carte-suit {
  font-size: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20%;
}
