The text in which div exactly? I see 4 divs with content so I’m not sure what item you are referring to?
What do you mean by ‘shift the text’ ? Do you mean add more text or are you trying to position something else alongside? It’s not really clear I’m afraid as to what you are referring to and how you are going about ‘shifting your text’?
Does this fiddle contain the example of your ‘shifted text’ or is this before you have tried to shift it?
Sorry to appear awkward but the question is not clearly defined enough for me to give a helpful answer.
I can tell you that you are using techniques that are not viable and you will almost never apply arbitrary fixed heights to elements that will be holding content like text.
If you can clarify the question and specifically mention the elements you are talking about and show examples of where it is not working we will be glad to try and help
The 550px is a magic number and you can never be sure that your text will always fit into that space.
It also seems that you have sized #second to match an image that is 500px tall which means you have two dependencies to take care of. What happens when the image size is changed will you remember to change everything else that is based on that size?
As I said above you will rarely size elements with fixed heights in that way as you really want the layout to work with whatever is thrown at it and not just for one set of explicit circumstances.
Yes, the top margin on the p element collapses onto the element above and effectively pushes the current element downwards. A quick fix is to add 1px padding-top to #first and then the margin will no longer collapse.
Collapsing margins are an important concept and not to be lightly skipped over until you understand the full implications or they will catch you out time and again There are many ways to avoid them but best to read the links Erik posted.
Lastly avoid using ids for styling purposes and just stick to classes to avoid specificity issues down the line. Remember to use useful names for your classes and ids rather than first or second etc as that does not mean a lot in the structure of an html page.
I also note that there is no element called ‘content’ in html5 so remove it. However I think you meant to add a closing section tag as there is one missing in that place in your html.