I'm most proud of how I managed to make the layout fully responsive using only Flexbox and CSS media queries.
I also made use of clamp()
for paragraph widths, which helped control text line length for better readability.
Next time, I would start earlier with planning intermediate breakpoints rather than fixing them later.
I'd also try to minimize repetitive media query logic and extract more utility classes or CSS variables.
What challenges did you encounter, and how did you overcome them?One challenge was managing layout behavior across screen widths between 450px and 875px.
I wanted centered alignment during that range but left-aligned content on smaller and larger screens.
I overcame it by using layered media queries, separating layout direction and text alignment, and writing mobile-first logic.
I also learned to use max-width: clamp(...)
and ch
units to keep paragraphs legible on larger screens.
I would appreciate feedback on anything.