/ src / app.css
app.css
 1  @tailwind base;
 2  @tailwind components;
 3  @tailwind utilities;
 4  
 5  html {
 6    height: 100%;
 7    overflow-y: scroll;
 8  }
 9  
10  body {
11    background-color: #393939;
12    color: #fff;
13    max-width: 56rem;
14    margin: 0 auto;
15  }