I am struggling to create a full-screen layout using Bootstrap 4, similar to the one shown in this image. I'm facing issues with the left and right columns not taking up the remaining space between the navigation and footer sections. Additionally, I need to align the content within these columns to the center. While I've tried giving fixed heights of (90vh) to these sections, it's resulting in a lot of workaround code for mobile and tablet devices. Is there a simple solution that I might be overlooking?
Any assistance would be greatly appreciated. Thank you!
body {
font-family: 'Montserrat', sans-serif;
background-color: #fcfcfc;
}
.navbar-colored{
background-color: rgba(255,255,255,0.9) !important; /*#94a7b7*/
box-shadow: 1px 1px 10px rgba(0,0,0,0.15);
opacity: 1;
animation-name: fadeInOpacity;
animation-iteration-count: 1;
animation-timing-function: linear;
animation-duration: 1.0s;
}
// CSS rules continue...