import theme from "../../theme"; export const style = { SECTION: { background: theme.foregroundColor, }, SECTION_INNER: { margin: "0 auto", padding: 10, }, HEADLINE: { textAlign: "center", fontSize: "32pt", fontFamily: theme.fontFamily, fontWeight: "bold" as "bold", paddingBottom: 10, }, TEXT: { textAlign: "center", fontFamily: theme.fontFamily, fontSize: "9pt", // lineHeight: "18pt", padding: "5px 0", }, VIDEO: { color: "white", maxWidth: 150, padding: "40px 60px", }, BUTTON: { style: { display: "inline-block", padding: 10, border: "1px solid #DDD", borderRadius: 5, background: "transparent", // backgroundColor: theme.backgroundColor, width: "100%", cursor: "pointer", }, caption1style: { // color: theme.foregroundColor, fontWeight: "bold" as "bold", fontSize: "10pt", paddingLeft: 30, paddingRight: 30, }, }, NAVIGATION: { linkStyle: { color: "white", listStyle: "none", display: "inline-block", padding: "20px 30px", fontFamily: "Roboto", }, }, };