/* 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('sunnytransitbg.jpg');
  /* 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) */lo
  position: relative;
  /* Add a white text color to all elements inside the .bgimg container */
  color: white;
  /* Add a font */
 font-family: 'Open Sans';
  /* Set the font-size to 25 pixels */
  font-size: 22px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  
}


/* Position text in the middle */
.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #000000;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Style the <hr> element */
hr {
  margin: auto;
  width: 40%;
}