    .menu {;
        width: 100%;
        display: inline-flex;
        justify-content: space-evenly;
    }
    .menu img{
        width:250px;
    }
#top52 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.card {
    font-size: 1.25rem;
    margin: 1em 0;
    border-radius: 3mm;
    background-color: white;
    width: 64mm;
    aspect-ratio: 25/35;
    position: relative;
    overflow: hidden;
    padding: 0.5em;
    box-shadow: -0.15em 0.15em 0.2em 0.1em #141414;
}

.card img{
    margin: auto;
    width: 90%;
    display: block;
}

.card h1 {
    white-space: nowrap;
    text-align: center;
    margin: 0;
font-size: clamp(0.5em, 1em, 2em);
    font-family: calvous_spurs;
}

.card h2 {
    text-align: center;
    line-height: 100%;
    margin: 0;
    font-size: 1em;
    font-weight: normal;
    font-family: Arial, Helvetica, sans-serif;
}

.spade span::after {content: '\2660';}
.heart span::after {content: '\2665';}
.diamond span::after {content: '\2666';}
.club span::after {content: '\2663';}

.diamond span, .heart span {color: red;}
.spade span, .club span {color: black;}

.card span {
    font-weight: normal;
    text-align: center;
    font-family: calvous_spurs;
    line-height: 110%;
    font-size: 1.25em;
    margin: .15em;
    padding: 0;
}

.card span:nth-child(1) {
    top: 0;
    left: 0;
    position: absolute;
}

.card span:nth-child(8) {
    bottom: 0;
    right: 0;
    position: absolute;
    transform: scale(1, -1);
}
