* {
	box-sizing: border-box;
}

.wrappedGallery{
    display: flex;
    flex-wrap: wrap;
    margin: 20px 20px; /* Changed margin to 50px auto */
    max-height: none;
    text-align: left; /* Reset text alignment for the content inside */
    justify-content: center ;

}


/* zdjbcpehfbealrjhbvaemkjvbaeufvbakmejvbmkaejfvbmazkjevb */





.card {
    width: 200px;
    height: 300px;
    perspective: 1000px;
    margin-top: 20px;
    margin-left: 75px;
  }
  
  .card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.899s;
  }
  
  .card:hover .card-inner {
    transform: rotateY(180deg);
  }
  
  .card-front,
  .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
  }
  
  .card-front {
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    align-items: center;
    border: 5px solid #333333;
    border-radius: 15px;
    justify-content: center;
    font-size: 24px;
    transform: rotateY(0deg);
  }
  
  .card-back {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    border: 5px solid #0f245a;
    border-radius: 10px;
    justify-content: center;
    font-size: 14px;
    transform: rotateY(180deg);
  }

  