Try to enable CSS baseline style:
...
import CssBaseline from "@mui/material/CssBaseline";
...
<ThemeProvider theme={theme}>
{/* A collection of HTML element and attribute style-normalizations. */}
<CssBaseline enableColorScheme />
...
</ThemeProvider>
...