macro_rules! align_content {
    (initial) => { ... };
    (inherit) => { ... };
    (unset) => { ... };
    (center) => { ... };
    (start) => { ... };
    (end) => { ... };
    (flex - start) => { ... };
    (flex - end) => { ... };
    (normal) => { ... };
    (space - between) => { ... };
    (space - around) => { ... };
    (space - evenly) => { ... };
    (stretch) => { ... };
}