
body {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    /* height: 100vh;  */
    margin: 0;
    background-color: rgb(12, 214, 96);
}

a {
    text-align: center;
    font-size: xx-large; 

}


h2 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: rgb(163, 31, 141);
    text-align: center;
}

h1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: rgb(163, 31, 141);
    text-align: center;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
}

.card {
    width: 100px;
    height: 150px;
    margin: 10px;
    perspective: 1000px;
    cursor: pointer;
}

.card .card-inner {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.5s;
}

.card.enlarged .card-inner {
    transform: scale(5); /* Adjust the scale factor as needed */
}

.card.enlarged .card-inner.flipped {
    transform: scale(5) rotateY(180deg);
}

.card .front-face,
.card .back-face {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card .card-face img {
    max-width: 100%;
    max-height: 100%;
}

.enlarged {
    z-index: 1000;
}

.front-face {
    transform: rotateY(0deg);
}

.back-face {
    transform: rotateY(180deg);
}
