I'm trying to center the container on the x and y axis but my code is only working for the x axis. Any ideas on how I could get it working on the y axis aswell (Vertically)?
function App() {
 return (
<Container className="align-content-center flex-wrap">
  <Row className="d-flex justify-content-center">
    <h1>Convert</h1>
  </Row>
  <CurrencyRow />
  <Row className="d-flex justify-content-center">=</Row>
  <CurrencyRow />
</Container>
 );
  }
