To move the title from the left to above the post content on the home page of the Blogum theme, you could do this:
.home .post h1 {
display: block;
position: absolute;
left: 160px;
}
.home .post-content {
padding-top: 60px;
}
However, note that when you using absolute positioning like this, there isn't a way to find out the height of the element. That means if you have a long title that the text might overlap. If you choose spacing that works for two lines of text for the title and make sure your titles aren't any longer than that, then it should work well for you.