a
{
  color: #09C;
}

a:visited
{
  color: #B38;
}

body
{
  margin: 0 auto;
  font-family: Tahoma, Verdana, Arial, sans-serif;
  background: #111;
  color: #EEE;
  height: 100vh
}

#header
{
  height: 1.5em;
  line-height: 1.5em;
  font-size: 2.5em;
  border-bottom: 1px solid #FEF;
  text-align: center;
}

@media screen and (min-width: 800px)
{
  #doc-body
  {
    background: inherit;
    color: inherit;
    display: flex;
    justify-content: left;
    height: 100%;
    flex-direction: row;
  }
  #sidemenu
  {
    width: 130px;
    text-align: center;
    border-right: 1px solid #FEF;
    padding-left: 0.8em;
  }

  #menuL
  {
    list-style-type: none;
    text-align: left;
    padding: 0;
    font-size: 1.2em;
  }
  #submenu ul
  {
    font-size:0.8em;
    list-style-type: none;
    padding-left: 0.8em;
  }

}
@media screen and (max-width: 800px)
{
  #doc-body
  {
    background: inherit;
    color: inherit;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  
  #sidemenu
  {
    text-align: center;
    display: felx;
  }

  #menuL
  {
    list-style-type: none;
    padding: 0;
    font-size: 1.2em;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  #menuL li
  {
    display: flex;
    margin: 0.1em;
  }
  #submenu
  {
    display: flex;
    flex-direction: column;
  }
  #submenu ul
  {
    font-size:0.8em;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    align-items: center;
  }
}

#menuL a:hover
{
  background: #333;
}


#content
{
  width: 100%;
  padding-left: 0.5em;
}

#centering
{
  display: flex;
  justify-content: center;
  align-items: center;
}
