body{
    display: flex;
    flex-direction: column;
}
.header{
    height: 70px;
    text-align: left;
    background-color: #eee;
}
.glovalNavigation{
    height: 40px;
    text-align: center;
    background-color: #eee;
    color: #fff;
}
main{
    display: flex;
    min-height: 100vh;
    margin: 10px 0 10px 0;
}
.content{
    flex: 1;
    background-color: #eee;
    text-align: center;
    margin-left: 10px;
}
.localNavigation{
    text-align: center;
    background-color: #888;
    color: #fff;
    width: 250px;
}
.footer{
    height: 30px;
    text-align: center;
    background-color: #eee;
}