body,
html {
       height: 100%;
       background-color: #0c0c0c;
       font-family: 'Montserrat';
}

* {
       box-sizing: border-box;
}

.bg-image {
       background-image: url(../images/web_banner.jpg);
       -webkit-background-size: cover;
       -moz-background-size: cover;
       -o-background-size: cover;
       /* Add the blur effect */
       filter: blur(8px);
       -webkit-filter: blur(8px);
       /* Full height */
       height: 100%;
       /* Center and scale the image nicely */
       background-position: center;
       background-repeat: no-repeat;
       background-size: cover;
}

.bg-text {
       background-color: rgba(0, 0, 0, 0.4);
       /* Black with opacity */
       color: white;
       font-weight: bold;
       position: absolute;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
       z-index: 2;
       width: 80%;
       padding: 20px;
       text-align: center;
       font-size: 2vh;
}