
body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;

}
#spielfeld{

    display: grid;
    grid-gap: 25px;
    grid-template-columns:repeat(4,325px);
    grid-template-rows:repeat(4,444.81px);

}
.yuGiCard{
    width: 325px;
    height: 444.8px;
    transform-style: preserve-3d;
}
img{
    width: 100%;
    height: 100%;
    position: absolute;
    visibility: visible;


}

.back, .front{

}


.card-sleeves{
 width: 325px;
 height: 444.81px;
 z-index: 1;

}
.cardAndSleeveDiv{
    position: relative;

}
.clicked{
    visibility: hidden;
}
#heartCountText{
    font-size: 48px;
    text-align: center;
}
.winLoseImgContainerStyle{
    width: 700px;
    height: 1018px;
    object-fit: contain;
    overflow: hidden;
    display: flex;
    justify-content: center;

}
.win-lose-img{
    width: 700px;
    height: 1018px;
}
#restartButton{

    margin: 20px 0;
    padding: 20px;
    background-color: white;
    border:none;
    border-radius: 15%;
    font-size: 24px;
}
@media (max-width: 2900px) {
    body {
        zoom: 33%; /* Nur Desktop-Browser wie Chrome, Edge */
    }
}
