<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CONTENTS
- Centering container
*/

/* centers containers*/
.mode_container {
    display: flex;
    flex-direction: column; /* Stack the rectangles vertically */
    gap: 15px; /* Space between the rectangles */
    justify-content: flex-start; /* Align items at the top */
    align-items: center; /* Center horizontally */
    margin-top: 20px; /* Space between mode container and above elements */
}

</pre></body></html>