<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.desktop_image {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.mobile_image {
    width: 100%;
    display: none;
}

@media screen and (max-width: 992px) {
    .mobile_image {
        display: block;
    }
    .desktop_image {
        display: none;
    }
}</pre></body></html>