body {
    background: rgb(238,174,202);
background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
  }
  
  .container {
    width: 480px;
    height: 480px;
    padding: 20px;
     /*border: 1px solid #ccc;
    border-radius: 10px; */
    margin-top: 100px;
    text-align: center;
    display: grid;
    place-items: center;

  }
 
  button.btn-primary {
    height: 50px;
    width: 200px;
    padding: 0px;
    margin: 0 auto;
    font-size: 16px;
    line-height: normal;
  }
 
  
  .bi{
    color: rgb(238,174,202);
    transition: transform 0.3s ease-in-out;
  }

  .bi:hover{
    transform: scale(1.2);
  }
  .caja
{
    margin-top: 120px;
}


.card-group {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-tarot {
    perspective: 1000px;
    width: 262px; /* Ajusta según tus necesidades */
    height: 420px; /* Ajusta según tus necesidades */
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s;
    margin-top: 20px;
    margin-right: 90px;
}

.card-tarot:hover {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
}

.card-back {
  background: radial-gradient(ellipse, rgba(148, 187, 233, 1) 0%, rgba(238, 174, 202, 1) 100%);
  transform: rotateY(180deg);
    display: grid;
    place-items: center;
    border-radius: 20px;
    filter: drop-shadow(0 0 25px white);
}

.card-tarot img {
    width: 100%; /* Ajusta según tus necesidades */
    height: 100%; /* Ajusta según tus necesidades */
    border-radius: 20px;
    filter: drop-shadow(0 0 25px white);
}
.card-back p {
    
    text-align: center;
    line-height: 1.5; 
    padding: 20px; 
}


.bn5 {
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}

.bn5:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowingbn5 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowingbn5 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.bn5:active {
  color: #000;
}

.bn5:active:after {
  background: transparent;
}

.bn5:hover:before {
  opacity: 1;
}

.bn5:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #191919;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.animate__animated{
  animation-duration: 2s;
}

.container > p{margin-top: 200px;
margin-bottom: 100px;}

@keyframes moveShadow {
  0% {
    filter: drop-shadow(0 0 45px rgb(76, 36, 239));
  }
  50% {
    filter: drop-shadow(0 0 45px rgb(207 121 173));

  }
  100% {
    filter: drop-shadow(0 0 45px rgb(76, 36, 239)); 
  }
}

#game-container {
  animation: moveShadow 3s infinite; /* Ajusta la duración y repetición según tus necesidades */
}
.orbe-entrada{
  animation-duration: 6s;

}