You'll need to set the parent element of positioned child elements to relative
to make the positioning work.
hgroup{
position: relative;
}
Your h1
needs a width and height, otherwise display: block
is a little pointless imho.
These are the two things which jump out at me the most :)