
.contUniq {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    /* width: 400px; */
    /* max-height: 500px; */
    overflow: hidden;
    position: relative;
    z-index: 90;
    text-align: center;
    height: auto;

}
.shadow {
    box-shadow: 0px 0px 15px #333;
}
.w100 {
    width: 100%;
}
.img-916 {
    aspect-ratio: 9/16;
    object-fit: contain;
    width: 100%;
    height: auto;
}
.img-43 {
    aspect-ratio: 4/3;
    width: 100%;
    height: auto;
}
.columnas {
    columns: 2;
}
.gap-5 {
    gap: 5;
}


.contadorUniq {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    font-size: 2rem;
    gap: .5rem;
}
.caja {
    border-radius: 50% !important;
    padding: 1rem;
    color: #333 !important;
    position: relative;
    z-index: 99;
    text-align: center;
    display: grid;
    place-content: center;
    font-family: 'JetBrains Mono', monospace; 
    background: rgba(56, 53, 53, 0.19);

    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 5px solid rgba(254, 213, 5, 0.3);
}
.texto {
    margin: 10px;
    font-weight: bold;
    text-align: center;
    font-size: 1rem;
    color: #333 !important;
}

.tapaFlip {
  position: relative;
  animation: flip2 1s ease;
  color: #333;
}
.backFlip {
  background-color: #FDCC00;
  width: 100%;
  height: 100%;
  border-radius: 25%;
}


@keyframes flip {
  0% {transform: rotateX(0deg)}
  100% {transform: rotateX(180deg)}
}
@keyframes flip2 {

  0% {color: transparent; transform: rotateX(180deg);  }

  100% {transform: rotateX(-1deg); color: #F2F2F299;}
}


@media screen and (max-width: 750px) {
    .columnas {
        columns: 1 !important;
    }

    .contUniq {
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
        /* max-height: 500px; */
        overflow: hidden;
        position: relative;
        z-index: 90;
        text-align: center;
        font-size: 1rem;
    }
    .caja {
        font-size: 1.5rem;
        border-radius: 50%;
        padding: 10px;
    }
    .texto {
        margin: 10px;
        font-weight: bold;
        text-align: center;
        font-size: .8rem !important;
        color: #333;
    }
}