import theme from "../../theme"; export const style = { SECTION: { background: theme.foregroundColor, }, SECTION_INNER: { margin: "0 auto", padding: 170, mobile: { desktop: { padding: 170, }, smartphone: { padding: 30, }, }, }, HEADLINE: { textAlign: "left", fontSize: "32pt", fontFamily: theme.fontFamily, // fontWeight: "bold" as "bold", }, ITEM_HEADLINE: { textAlign: "left", fontSize: "16pt", fontFamily: theme.fontFamily, // fontWeight: "bold" as "bold", paddingBottom: 10, }, TEXT: { textAlign: "left", fontFamily: theme.fontFamily, marginTop: 20, fontSize: "13pt", lineHeight: "18pt", }, BUTTON: { style: { display: "inline-block", padding: 15, border: "none", backgroundColor: theme.backgroundColor, minWidth: 150, marginTop: 55, borderRadius: 3, cursor: "pointer", }, caption1: { color: theme.foregroundColor, fontWeight: "bold" as "bold", fontSize: "10pt", }, }, };