html,
body {
    padding: 0;
    min-height: 100vh;
}

body {
    background-color: white;
    color: black;
    margin: 0 auto;
    padding: 2rem 1rem;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
}

header {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

main {
    max-width: 500px;
}

.carousel {
    display: flex;
    height: 240px;
    padding-bottom: 4px;
    overflow-x: auto;
    gap: 8px;
}

.carousel img {
    max-width: none;
    object-fit: contain;
    scroll-snap-align: start;
}

nav {
    display: flex;
    gap: 8px;
}

span {
    color: var(--secondary-text);
}

.callout {
    border: solid 1px;
    text-wrap: pretty;
    padding: 1em;
    text-align: center;
}