There is quite a bit of code in this one, so I've decided to showcase it in a codepen. https://codepen.io/anon/pen/WMyQEJ
Essentially, I'm utilizing @media queries to expand the #about
div in order to accommodate my content that spills over into another div on mobile devices. The aim is to have the blue background extend below the placeholder image to create a seamless section.
Here's the specific Media Query:
/*MOBILE SUPPORT*/
@media screen and (max-width: 768px) {
#about {
height: 120vh !important;
background: rgb(12, 18, 71);
background-size: cover;
}
}