body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f2f2f2;
    margin: 0;
    background-image: url("8483052.jpg");
    object-fit: cover;
}

.card {
    width: 450px;
    height: 270px;
    perspective: 1000px;
}

.card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    position: relative;
}

.card-front, .card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid #000;
    border-radius: 10px;
}

.card-front {
    background-color: #b79f7c;
}

.card-back {
    background-color: #b79f7c;
    color: #000;
    transform: rotateY(180deg);
    background-image: url("image.png");
}

.shapes {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.circle, .square, .triangle {
    width: 50px;
    height: 50px;
    border: 3px solid #000;
    background: transparent;
}

.circle {
    border-radius: 50%;
}

.triangle {
    position: relative;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid #000;
}

.squid {
    /* object-fit: cover; */    
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid #000;
    object-fit: cover;
    border-radius: 10px;
}

.triangle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: -22px;
    width: 0;
    height: 0;
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-bottom: 40px solid #b79f7c;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.card-back .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    align-items: center;
}

.card-back{
    border-radius: 10px;
}

.card:hover .card-inner {
    transform: rotateY(180deg);
}

#QR {
    height: 60%;
    width: 60%;
    object-fit: cover;
}


body {
    /* background-color: #000; */
    /* background: rgba(0, 0, 0, .6) */
}