/*** Style pour la page de maintenance  ***/
/*** Auteur : Gregory Blondieau ***/
 /* 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: url('../img/bgBois.jpg');
    height: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    color: white;
  }
  
  /* Position text in the top-left corner */
  .topleft {
    position: absolute;
    top: 0;
    left: 40%;
    text-align: center;
  }
  
  /* Position text in the bottom-left corner */
  .bottomleft {
    position: absolute;
    bottom: 0;
    left: 30%;
    text-align: center;
    font-size: 80%;
  }
  
  /* Position text in the middle */
  .middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
  /* Style the <hr> element */
  hr {
    position: absolute;
    margin: auto;
    width: 40%;
  } 

  h1 {
    text-align: center;
    font-size: 2em;
  }

  h2 {
    text-align: center;
    font-size: 2em;
  }



   /* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  /* Style the icon bar links */
  .icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
  }
  
  /* Style the social media icons with color, if you want */
  .icon-bar a:hover {
    background-color: #bb0000;
  }
  
  .facebook {
    background: #3B5998;
    color: white;
  }
  
  .twitter {
    background: #55ACEE;
    color: white;
  }

  .skype {
    background: #55ACEE;
    color: white;
  }

  .google {
    background: #dd4b39;
    color: white;
  }
  
  .linkedin {
    background: #007bb5;
    color: white;
  }
  
  .youtube {
    background: #bb0000;
    color: white;
  } 

  .btn {
    border: 2px solid black;
    background-color: white;
    color: black;
    padding: 10px 10px;
    cursor: pointer;
    border-radius: 5px;
  }
  /* Red */
.danger {
    border-color: #f44336;
    color: red
  }
  
  .danger:hover {
    background: #f44336;
    color: white;
  }