/* CSS Document */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #4F4F4F;
}
h2 {}

.seleccion {}

#carta1 {
    animation: move 2.2s;
    margin-right: 35px ;
}
#carta2 {
    animation: move 1.5s;
}
@keyframes move {
    0% {
        transform: scale(0.0);
        opacity: 0%;
    }
    50% {
        transform: scale(0.50);
        transform: rotate(0.5turn);
    }
    100% {
        transform: scale(1);
        opacity: 100%;
    }
}
.pul .carta {
    max-width: 100%;
    height: auto;
}
#carta1-nombre, #carta2-nombre {
    font-size: 16px;
}
h2 {
    font-size: 18px;
}
@media (max-width: 768px) {
    #carta1, #carta2 {
        transform: scale(0.4);
        animation: moves 2.5s;
        margin-bottom: -80px;
        margin-top: -80px;
        margin-left: -35px;
        margin-right: -35px;
    }
    @keyframes moves {
        0% {
            opacity: 0%;
        }
        50% {
            transform: rotate(0.5turn) scale(0.35);
            opacity: 80%;
        }
        100% {}
    }
}