Centering everything. To center the box itself I used margin: auto;. To center the image and text inside I used flex at first but realized I just needed text-align: center;.
What challenges did you encounter, and how did you overcome them?Getting the HTML and Body to take up the whole space of the page. I assumed they would fit the container automatically.
html{ min-height: 100%; margin: 0;
}
body{ min-height: 100vh; margin: 0; background-color: var(--slate-3); }
What specific areas of your project would you like help with?I am hoping my solution isn't too much and could have been accomplished with way less code.