body {
    font-family: 'Baloo 2', cursive;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
}

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@700&display=swap');

.fun-card {
    background: #fff;
    border: 4px solid #000;
    border-radius: 20px;
    box-shadow: 8px 8px 0 #000;
    text-align: center;
    width: 90%;
    max-width: 480px; /* Reverted from 80vw */
    overflow: hidden;
    padding: 20px;
}

.map-card {
    background: #fff;
    border: 4px solid #000;
    border-radius: 20px;
    box-shadow: 8px 8px 0 #000;
    text-align: center;
    width: 90%;
    max-width: 80vw;
    max-height: 90vh;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.meme {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.card-text {
    padding: 0;
}

p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

.btn-fun {
    display: inline-block;
    padding: 10px 25px;
    background-color: #ffde59;
    color: #000;
    text-decoration: none;
    border: 3px solid #000;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    font-weight: 700;
}

.btn-fun:hover {
    transform: scale(1.05);
    box-shadow: 4px 4px 0 #000;
}

.map-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    flex-shrink: 1;
    min-height: 0;
    border-radius: 10px;
    margin-bottom: 20px;
}