Hi. Just dropping in to warn you that your new formatting on your frontpage is breaking on wider monitors due to your separator lines (such as the one bellow the header image) being images and thus able to arrange horizontally with images in the same paragraph if the screen is wide enough. Adding br tags before each line.png or wrapping them in p tags should be enough in your case. Best of luck.
Well, the only other major thing I can point to is that your layout also breaks when viewed on the bane of all web designers, the mobile phone. Given your minimal css approach, though, that's not something so easily fixed without major reworking.
Having said that, one breakage that stood out to me is how the text starts overlapping on itself due to to how you set line-height to a very small amount and then doubled each line break to compensate; I don't mean to come across as a snob but that is very hacky practice and I don't reccomend it. A line-height of 3.8em or something is enough to get the job done, you don't need the double line breaks.
Thank you so much for alerting me to this, I think I fixed the issue. Please let me know if you encounter any other problems!
Well, the only other major thing I can point to is that your layout also breaks when viewed on the bane of all web designers, the mobile phone. Given your minimal css approach, though, that's not something so easily fixed without major reworking.
Having said that, one breakage that stood out to me is how the text starts overlapping on itself due to to how you set line-height to a very small amount and then doubled each line break to compensate; I don't mean to come across as a snob but that is very hacky practice and I don't reccomend it. A line-height of 3.8em or something is enough to get the job done, you don't need the double line breaks.