Currently, I'm working on designing a white text box that includes both a title and content. My navbar and background image are already set up, so the next step is creating this new container. Is there anyone out there who could provide some guidance or assistance?
Appreciate it! 1
Here's the sample HTML code:
<div class="container-fluid bgImage">
<div class="container">
<div class="row justify-content-center">
<h1
class="text-bottom text-center text-white"
style="font-family: 'Oswald', sans-serif; font-size: 40px;">
Realize o seu plano Canadá conosco!
</h1>
</div>
</div>
</div>
CSS details are provided as follows:
.bgImage {
background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
url(https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.pexels.com%2Fsearch%2Fnice%2F&psig=AOvVaw2j1DWCKF-BDyEOl8dckied&ust=1585611293317000&source=images&cd=vfe&ved=0CAIQjRxqFwoTCKjVssbswOgCFQAAAAAdAAAAABAD) center center / cover;
height: 100vh;
display: flex;
display: center;
}