* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 200px;
    height: auto;
}

body {
    font-family: 'psfournier-std', sans-serif;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.tarot-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 320px;
}

.card {
    display: block;
    width: 100%;
    max-width: 200px;
}

/* Responsive Design */
@media (max-width: 500px) {
    .tarot-container {
        max-width: 260px;
    }
}
