html, body {
    height: 100%;
    width: 100%;
    margin: 0%;
    padding: 0%;
    display: flex;
    overflow: hidden;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: #D60B52;
}

.container {
    height: 100%;
    width: 100%;
    margin: 0%;
    padding: 0%;
    min-width: 29%;
    max-width: 29%;
    display: flex;
    flex-direction: column;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../img/backgroud-zaffari.png");
}

.deck {
    position: relative;
    align-items: center;
    width: auto;
    height: 51%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s;
    backface-visibility: hidden;
}

.image:hover .deck {
    transform: rotateY(180deg);
}

.barcode {
    position: absolute;
    bottom: 0;
    height: auto;
    width: auto;
    border-radius: 8px;
}

.qrcode {
    position: absolute;
    bottom: 0;
    height: 156px;
    width: 156px;
    background-color: white;
    border-radius: 8px;
    padding-left: 8px;
    padding-top: 8px;
}

@media screen and (max-width: 600px) {
    .container {
        min-width: 100%;
        max-width: 100%;
        background-size: 100% 100%;
    }
}