body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    color: #333;
}

.container {
    text-align: center;
    padding: 40px 20px 20px 20px;
}

/* Main logo */
.main-logo {
	margin-top:20px;
	font-family:'Bookman Old Style', Bookman, serif;
	font-size: clamp(28px, 6vw, 48px);
	font-weight:bold;
	line-height:1.2;
}

/* Gradient banner */
.banner {
    background: linear-gradient(#e0e0e0, #d5d5d5);
    padding: 25px 35px;
    border-radius: 14px;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

.banner h2 {
    color: #FF0000;
    font-weight: bold;
    font-style: normal;
    font-size: 32px;
    margin: 0;
}

.banner h2 .afoot {
    font-style: italic;
}

.the-word {
    font-size: 1.2em;
}

/* 2×2 grid: AppStore | GooglePlay
              Annie    | Charlie */
.store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: start;   /* important: pulls Annie/Charlie upward */
    row-gap: 8px;         /* tighter vertical spacing */
    column-gap: 20px;
    margin-top: 20px;
}


/* All items shrink proportionally */
.store-grid img {
    display: block;       /* removes inline-image whitespace */
    width: min(180px, 40vw);
    height: auto;
    object-fit: contain;
}


/* Flip character */
.flip img {
    transform: scaleX(-1);
}

/* Optional: slightly larger on desktop */
@media (min-width: 900px) {
    .store-grid img {
        width: 180px;
    }
}
