Adjust location of jumbotron title and buttons

So I am starting a very simple one page site carsforsalemi.com. The problem I have is that on any mobile device all you can see is the title and entry. The buttons are pushed down below the viewing on the mobile screen. Looks great on desktop but could be moved up for both really. Is there an easy CSS edit where I can move the jumbotron titles, entry and 2 buttons up about? THANK YOU!!

Hello @a98cr125,

You could use this CSS code and play with the padding top and bottom values to match your needs:

#header .bottom-header {
    padding-top: 240px;
    padding-bottom: 280px;
}

I hope this do the trick.
Regards