/* Ensure the page can size the flex root properly */
html, body {
  height: 100%;
  margin: 0;
}
#office{
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}

/* Main: takes remaining space and scrolls vertically */
#office-main{
  flex: 1 1 auto;
  overflow-y: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
  #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
  }