Just starting out with mui, I'm currently working on styling CSS for mui components like so
<Typography
variant="h5"
sx={{
fontWeight: "bold",
color: "#1a759f",
display: "flex",
justifyContent: "center",
margin: "20vh",
}}
>
Topology
</Typography>
I realize this inline CSS method is not ideal. Can you suggest an alternative approach?