html{
    background-color: rgb(220, 168, 250);
}
html, body {
    padding: 5px;
 }

 body {
     display: grid;
     grid-template-rows: 0fr .30fr .15fr .05fr;
     grid-template-columns: 10fr;
     grid-template-areas: "header" "main" "map"  "footer";
     justify-content: center;
 }

 header {
    grid-area: header;
    display: grid;
    grid-template-columns: .2fr .6fr .2fr;
    justify-content: center;
 }

.main {
    display: grid;
    grid-area: main;
    background-color: rgb(167, 250, 250);
}

#map {
    grid-area: map;
    height: 40vh;
}

#footer {
    grid-area: footer;
}