import theme from "../../theme"; export const style = { SECTION: { background: theme.foregroundColor, }, SECTION_INNER: { margin: "0 auto", padding: 50, width: 750, }, HEADLINE: { textAlign: "center", fontSize: "32pt", fontFamily: theme.fontFamily, fontWeight: "bold" as "bold", paddingBottom: 10, }, TEXT: { textAlign: "center", fontFamily: theme.fontFamily, fontSize: "13pt", lineHeight: "18pt", padding: "20px 0", }, BUTTON: { style: { display: "inline-block", textAlign: "center", padding: "15px 100px", border: "none", backgroundColor: theme.backgroundColor, // width: "100%", borderRadius: 3, cursor: "pointer", margin: "0 auto", marginTop: 20, }, caption1: { color: theme.foregroundColor, fontWeight: "bold" as "bold", fontSize: "22pt", }, }, };