/* Assume light mode by default */
@import url("./light.css");
/* Supersede dark mode when applicable */
/* @import url("./dark.css") (prefers-color-scheme: dark); */

:root {
    --md-ref-typeface-brand: 'Roboto Flex', 'Open Sans', sans-serif;
    --md-ref-typeface-plain: 'Roboto Flex', 'Open Sans', sans-serif;
}

.max-width {
    max-width: 1200px;
    margin: 0 auto;
}

.flex {
    display: flex;
}

.flexw {
    display: flex;
    flex-wrap: wrap;
}

.grid {
    display: grid;
}

.col {
    flex-direction: column;
}

.ac {
    align-items: center;
}

.jc,
.jcc {
    justify-content: center;
}

.fw {
    width: 100%;
}

.g24 {
    gap: 24px;
}

.g48 {
    gap: 48px;
}

.p12 {
    padding: 12px;
}

.p16 {
    padding: 16px;
}