body {
    background-color: #9c8d8d;
    background-image: image("arena.jpg");
}
#ma_lla {
    width: 700px;
}
#tablero {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 95%;
    margin: auto;
    padding: 5px;
  }
  
  .tarjeta {
    position: relative;
    background-color: #9c8d8d;
    width: 85px;
    height: 85px;
    perspective: 1000px;
    overflow: hidden; /* Añade esta línea */
    border-radius: 5px;
  }
  
  
  .tarjeta.flip .tarjeta__cuerpo {
    transform: rotateY(180deg);
  }
  
  .tarjeta.intercambiar {
    animation: intercambiar 1s forwards;
  }
  
  .tarjeta__cuerpo {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
  }
  
  .tarjeta__cuerpo::before, .tarjeta__cuerpo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  }
  
  .tarjeta__cuerpo::before {
    transform: rotateX(90deg) translateZ(50px);
  }
  
  .tarjeta__cuerpo::after {
    transform: rotateY(90deg) translateZ(50px);
  }
  
  .tarjeta .trasera,
  .tarjeta .frente {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
  }
  
  .tarjeta .trasera {
    text-align: center;
    
    background-color: #fff8e0;
    color: white;
    padding: -40px;

    line-height: 100px;
    font-size: 60px;
 
    transform: rotateY(180deg);
  }
  
  .tarjeta .frente {
    background-color: #ffe369;
  }
  
  #mensaje {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #fff;
    background-color: #ffc107;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  @keyframes intercambiar {
    to {
      transform: translate(var(--x), var(--y));
    }
  }
  
