*{
    padding: 0;
    margin:0;
    box-sizing: border-box;
}

html,body {
height:100%;
}

body{

}

.pageWrapper {
    box-shadow: 0px 0px 2px 1px #888888;
    max-width: 1200px;
    min-width: 400px;
    min-height: 100.1%;
    margin: 0 auto;
    background-color: #F2A929;

    display: grid;
    grid-template-columns: minmax(400px, 1200px);
    grid-template-rows: 200px 40px auto 50px;
    grid-template-areas: 
    "h"
    "n"
    "m"
    "f";
}

header{
    background-color: #F2A929;
    height:200px;
    grid-area: h;

    display:grid;
    grid-template-columns: 250px minmax(400px,1000px);
    /* grid-template-rows: 10px auto 1fr; */
}

.header-logo{
    /* background-color: bisque; */
    display: flex;
    align-items: center;
    justify-content:center;
    padding-left: 25px;
}

.header-headline{
    /* background-color: greenyellow; */
    display: flex;
    align-items: center;
    justify-content:left;
    padding-left: 25px;
}
.header-headline h1{
    font-size: 10px;
}

nav{
    background-color: #6B845E;
    height:40px;
    grid-area: n;
}

main {
    background-color: #FFD700;
    height:200px;
    grid-area: m;
}



footer{
    background-color: peachpuff;
    grid-area: f;
}


.green{
    background-color: #6B845E;
    height:120px;
    width:200px;
    position: absolute;
    top:50%;
    margin-top:-60px;
    margin-left:60px;
}

.red{
    background-color: #944357;
    width: 160px;
    height: 80px;
    position: relative;
}

.blue{
    background-color: #2176B3;
    width: 120px;
    height: 40px;
    position: absolute;
    top:50%;
    margin-top:-40px;
}