I'm trying to center a button just like the one shown in the image below. It needs to be perfectly aligned with the lines. What is the best way to achieve this?
Check out the example on Codesandbox
https://i.sstatic.net/dnhKx.png
<MainContainer>
<Stack spacing={1}>
<Card sx={{ minWidth: 275 }}>
<CardContent>
<Typography
sx={{ fontSize: 14 }}
color="text.secondary"
gutterBottom
>
Word of the Day
</Typography>
<Typography variant="h5" component="div">
be{bull}nev{bull}o{bull}lent
</Typography>
<Typography sx={{ mb: 1.5 }} color="text.secondary">
adjective
</Typography>
<Typography variant="body2">
well meaning and kindly.
<br />
{'"a benevolent smile"'}
</Typography>
</CardContent>
</Card>
</Stack>
<Stack justifyContent={"center"} alignItems={"center"}>
<Button variant="contained" color="primary" sx={{ maxWidth: 50 }}>
Hello
</Button>
</Stack>
</MainContainer>