:root {
  --clr-primary: #EAE7DC;
  --clr-secondary: #D8C3A5;
  --clr-tertiary: #8E8D8A;
  --clr-quaternary: #E98074;
  --clr-quinary: #E85A4F;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

.flip-card-small {
  background-color: transparent;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  /*box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);*/
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: transparent;
  color: black;
}

.flip-card-back {
  background-color: var(--clr-secondary);
  color: var(clr-quinary);
  transform: rotateY(180deg);
  border-radius: 10%;
  
  border-style: solid;
  border-width: 1px;
  border-color: var(--clr-tertiary);
}

.flip-card-img {
  border-radius: 10%;
	
  background-color: white;
}

.flip-card-image-avatar {
  background-image: url('img/games/game_avatar.png');
  background-repeat: no-repeat;
  background-size: 100%;
}