/* 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: url('/bg.png') no-repeat center center fixed;
    /* Full-screen */
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: hidden;
    /* Add a white text color to all elements inside the .bgimg container */
    color: #dcdde1;
    /* Add a font */
    font-family: 'Bebas Neue', cursive;
    /* Set the font-size to 25 pixels */
    font-size: 45px;
    letter-spacing: 1px;
  }
  
  /* Position text in the top-left corner */
  .topleft {
    position: absolute;
    top: 0;
    left: 16px;
  }
  
  /* Position text in the bottom-left corner */
  .bottomleft {
    position: absolute;
    bottom: 0;
    left: 16px;
  }
  
  /* 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: 100%;
    height: auto;
    min-height: 5px;
    background: #dcdde1;
  }