*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html,body,#root{width:100%;min-height:100vh;margin:0;padding:0}body{background:#0f0f0f}``` Save and close. **2 Open `App.jsx`:** ``` notepad C:Userswharfgoliathonsrc\app.jsx ``` Find this line near the bottom (around line 490): ``` <div style={{fontFamily:"Georgia, 'Times New Roman', serif",background: DARK,minHeight: "100vh",color: "#e8e0d0"}}> ``` Change it to: ``` <div style={{fontFamily:"Georgia, 'Times New Roman', serif",background: DARK,minHeight: "100vh",width: "100%",color: "#e8e0d0"}}> ``` Save,then push to GitHub: ``` cd C:Userswharfgoliathon git add . git commit -m "Fix full width layout" git push{}
