body {
    margin: 0;
    padding: 0;
    position: relative;

    display: flex;
    flex-wrap: wrap;

}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    background: url(background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(5px);

    z-index: -1;

}



.container{
    width: 1200px;
    min-height: 150px;

    margin-left: auto;
    margin-right: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}

h1{
    background: url(NewTitle.png) center/contain no-repeat;
    width: 70%;
    height: 180px;
    display: block;
}

h2{
    width: 20%;
    height: 50px;
}

#divcard{
    display: flex;
}

.card{
    width: 250px;
    height: 350px;
    margin: 10px;

    border-radius: 5px;

}

#card1cont {
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.card.flip .inner {
    transform: rotateY(180deg);
}

.card {
    perspective: 1000px;
}

.front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; 
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.front {
    background: url(ZiT.jpeg);
    border: 5px solid #e564fc;
    background-size: cover;
    box-sizing: border-box;
    transform: rotateY(0deg); 
}



.back {
    background-color: white;
    border: 5px solid #e564fc;
    padding: 5px;
    font-weight: bold;
    box-sizing: border-box;
    align-items: baseline;
    text-align: center;
    transform: rotateY(180deg);
}


#card2cont {
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.front2, .back2 {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; 
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.front2{
    background: url(Wild.png);
    background-size: cover;
    box-sizing: border-box;
    color: white;
}

.back2{
    background-color: white;
    border: 5px solid #61952e;
    box-sizing: border-box;
    font-weight: bold;
    align-items: baseline;
    padding: 5px;
    transform: rotateY(180deg);
    text-align: center;
}

button{
    display: none;

    width: 230px;
    height: 35px;

    padding: 5px;
    font-weight: bolder;
    font-size: 15px;

    background-color: rgb(249, 208, 3);
    color: black;
    
    border: 1px  rgb(249, 208, 3) solid;
    border-radius: 2px;
    box-shadow: 2px 2px rgba(155, 153, 153, 0.696);
}

button:hover{
    background-color: rgb(243, 201, 17);
}

.disp{
    display: block;
}

.logo {
    background: url(logo.png);
    background-size: contain;
    background-repeat: no-repeat;

    width: 32vw;        
    height: 32vw;

    max-width: 520px;   
    max-height: 520px;

    position: fixed;
    top: -150px;     
    left: 90px;   

    z-index: 1000;
    pointer-events: none;
}



