#office{
    /* Affichage des pages les unes sur les autres sur toute la hauteur et toute la largeur */
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #landingBrand{
    z-index: 1000;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
  }
  #landingBrand img{
    width: 70px;
    height: 70px;
    margin-right: 10px;
  }
  #landingBrand span{
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 2px #000;
    margin-left: 10px;
    letter-spacing: 5px;
    font-family: Arial, Helvetica, sans-serif
  }