/* Set height to 100% for body and html to enable the background image to cover the whole page: */
body, html {
  height: 100%
}


.bgimg {
  /* Background image */
/*  background-image: url('/bbnc-background.jpg'); */
  /* Background gradient */
background: rgb(17,63,92);
background: linear-gradient(286deg, rgba(17,63,92,1) 0%, rgba(2,30,47,1) 65%);
  /* Full-screen */
  height: 100%;
  /* Center the background image */
  background-position: center;
  /* Scale and zoom in the image */
  background-size: cover;
  /* Add position: relative to enable absolutely positioned elements inside the image (place text) */
  position: relative;
  /* Add a white text color to all elements inside the .bgimg container */
  color: white;
  /* Add a font */
  font-family: 'Roboto', sans-serif;
  font-weight: '500';
  /* Set the font-size to 12 pixels */
  font-size: 12px;
}

/* Position text in the top-left corner */
.topleft {
  position: absolute;
  top: 0;
  left: 0px;
}

/* Position text in the bottom-left corner */
.bottomleft {
  position: absolute;
  bottom: 0;
  left: 0px;
}

/*position logo in the middle */

.logo-container {
    min-height: 10em;
    display: table-cell;
    vertical-align: middle }

.logo-middle {
    display: block;
    padding-top: 75px;
    margin-left: auto;
    margin-right: auto }

/* Position text in the middle */
.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Style the <hr> element */
hr {
  margin: auto;
  width: 40%;
}
.subheading {
  font-weight: 300
}


/*Set link color */
a {
  color: 8cb7c7;
}