How can i fix table out of screen if it's inside centered flexbox?
import React from "react";
import styled from "styled-components";
const Wrapper = styled.div`
display: flex;
flex-direction: column;
align-items: center;
`;
export default function App() {
return (
<Wrapper>
<h1>Hello CodeSandbox</h1>
<p>
1__________ 2______________ 3______________ 4____________ 5----------
6----------------- 7 ----------- 8 -----------------
</p>
<table border="1">
<tr>
<th>Россия</th>
<th>Великобритания</th>
<th>Европа</th>
<th>Длина ступни, см</th>
</tr>
<tr>
<td>34,534,534,534,534,534,534,534,534,534,5 </td>
<td>
3,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,5
</td>
<td>36</td>
<td>23</td>
</tr>
</table>
</Wrapper>
);
}