@dcarls91 i think you could override the regions sizings in custom.css
this is whats in main.css for the center
.region.third,
.region.middle.center {
width: 100%;
text-align: center;
transform: translateY(-50%);
}
.region.upper.third {
top: 33%;
}
.region.middle.center {
top: 50%;
}
.region.lower.third {
top: 66%;
}
and index.html (spaces after < because the viewer here does some funny stuff)
< div class="region upper third">< div class="container">< /div>< /div>
< div class="region middle center">< div class="container">< /div>< /div>
< div class="region lower third">< div class="container"><br/>< /div>< /div>
so, if u make upper a little smaller and middle a little bigger… it might work out