import theme from "../../theme"; export const style = { SECTION: { background: theme.foregroundColor, }, SECTION_INNER: { backgroundColor: theme.backgroundColor, borderRadius: 8, margin: "0 auto", mobile: { desktop: { padding: 100, }, smartphone: { padding: 40, }, }, }, HEADLINE: { textAlign: "center", fontSize: "32pt", fontFamily: theme.fontFamily, fontWeight: "bold" as "bold", paddingBottom: 10, color: theme.foregroundColor, }, TEXT: { textAlign: "center", fontFamily: theme.fontFamily, fontSize: "13pt", lineHeight: "18pt", padding: "20px 0", color: theme.foregroundColor, }, };