The font used in our wireframe is Inter. The download page for the Inter font is https://rsms.me/inter/download/. The suggested code is added to index.html section.
border-box so that my css widths and heights of objects include their borders.
min-height: 100vh so that any background that I set on the body covers at least the visible viewport.
margin: 0 to remove the default margin on the body. I don't set this globally like I see some developers do because I want to keep the default margins on other elements.
Make the body a flex box container. These settings will make each direct descendent of
justify-content: flex-start will push all items to the top with no default spacing between them. Control the space between items with margins.
align-items: center will center all items horizontally within the viewport.
Changes to index.html
Changes to styles.css
Add suggested Inter font code to body.
Add my basic boiler plate properties
border-box so that my css widths and heights of objects include their borders. min-height: 100vh so that any background that I set on the body covers at least the visible viewport. margin: 0 to remove the default margin on the body. I don't set this globally like I see some developers do because I want to keep the default margins on other elements.
Make the body a flex box container. These settings will make each direct descendent of
in index.html flex items.justify-content: flex-start will push all items to the top with no default spacing between them. Control the space between items with margins. align-items: center will center all items horizontally within the viewport.