import { makeStyles } from '@material-ui/core/styles'; export const homePageStyle = makeStyles(() => ({ root: { minHeight: '100vh', backgroundImage: `url(${'/assets/bgBIG.svg'})`, backgroundRepeat: 'no-repeat', backgroundSize: 'cover', }, rightAlign: { marginLeft: 'auto', }, whiteText: { color: 'white', }, imageIcon: { maxHeight: '50%', }, paddingBottom: { paddingBottom: '65px', }, paddingTop: { paddingTop: '65px', }, bodyIcon: { fontSize: '90px', paddingBottom: '10px', paddingTop: '10px', }, contIcon: { width: '100%', left: '0', right: '0', }, noShadow: { border: 'none', boxShadow: 'none', backgroundColor: 'transparent', }, }));