﻿body
{
    margin:0px
    padding:0px
}   
#header
{
  display: flex;


justify-content: center;
align-items: center;

  

  font-family: "Times New Roman", Helvetica, Arial;
  font-style: italic;
  font-weight: bold;
  background: #000;
  width: 100%;
  height: 95px;
}

#parent {position: relative;}

#child
{
    padding: 20px;
    display: flex;
    justify-content: center;
}

#leftcolumn
{
    background: #000;
    float:left;
    width:15%;
    height:1000px;
}
#content
{
    background: #fff;
    float:right;
    width:85%;
    height:1000px;
}

#footer
{
    background: #0f0;
    width:100%;
    height:100px;
}





