body {
    background-color: green;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.CaixaCarta {
    width: 360px;
    height: 520px;
    perspective: 1000px;
}

.carta {
    width: 100%;
    height: 100%;
    position:relative;
    transition: transform 0.9s;
    transform-style:  preserve-3d;
}

.frente, .verso {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    border-radius: 30px;
    background-color: white;
    border: 5px solid black;
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.5);
}

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

.pau {
    width: 100px;
}

.letra {
    font-size: 60px;
    font-weight: bold;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    line-height: 0.8;
    margin: 0;
}

.CimaEsq {
    position: absolute;
    display: flex;
    align-items: center;
    top: 5px;
    left: 5px;
    flex-direction: column;
}

.BaixoDir {
    position: absolute;
    display: flex;
    align-items: center;
    transform: rotate(180deg);
    flex-direction: column;
    bottom: 5px;
    right: 5px;
}

.meio {
    position: absolute;
    width: 100%;
    display: flex;
    transform: translate(-50%, -50%);
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
}

.rei {
    max-width: 220px;
    max-height: 300px;

}

.verso {
    transform: rotateY(180deg);
    background-image: url(./images/oo.gif);
    background-size: cover;
}

.caixabussola {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.caixabussola:hover {
    transform: scale(1.1);
}

.caixabussola:hover #bussola {
    display: none;
}

.caixabussola:hover .bussolaaberta {
    display: block;
}

#bussola {
    width: 100px;
    display: block;
}

.bussolaaberta {
    display: none;
    width: 230px;
    display: none;
}