.side-by-side {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: flex-start;
}

.side-by-side figure {
    flex: 1;
    margin: 0;
    text-align: center;
}

.side-by-side figure img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 640px) {
    .side-by-side {
        flex-direction: column;
    }
}
