<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
.flexbox{
    display: flex;
    justify-content: flex-start;
}

.flexbox-4-item{
    width: 8%;
}

@media screen and (max-width: 640px) {
    
    .flexbox{
        display: flex;
    }
    .flexbox-4-item{
        width: 100%;
    }
}
</pre></body></html>