﻿body
{
}

* {
    box-sizing: border-box;
}

.flex-container {
    display: flex;
    width: 100%;
    justify-content: center;
}

.flex-container > div {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
}


.flex-container > div.TopBanner {
    display: flex;
    flex: 100%;
    flex-direction: row;
}

.flex-container > div.Menu {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: blue;
}

.MiddleArea {
    display: flex;
    flex-direction: row; 
    flex-wrap: wrap;
}

.PictureInsert {
    background-color: white;
    width: 100%;
    padding: 20px;
}
.Left {
    flex: 13%;
    max-width: 13%;
    justify-content: left;
}

.Main {
    flex: 74%;
    max-width: 74%;
    justify-content: center;
    text-justify: center;
}

.Right {
    flex: 13%;
    max-width: 13%;
    justify-content: right;
}

.Footer {
    display: flex;
    justify-content: center;
    color: white; 
    background-color: red;
}