body{
    font-family:monospace;
    background-image: url(https://www.campendium.com/camping/wp-content/uploads/2020/05/camping-with-dogs-tips.jpg);
    display:grid;
    grid-template-rows: .1fr .8fr .1fr;
    grid-template-columns: .8fr 1fr .8fr; 
    grid-template-areas: " header header header" "contentpanel mappanel survey" "footer footer footer ";
}

header{
    grid-area: header;
    justify-content: center;
    text-align: center;
    color: rgb(14, 56, 14);
    background-color: rgba(228, 151, 198, 0.521);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

footer{
    grid-area: footer;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#map{
    height:90vh;
    grid-area: mappanel;
} 

#survey {
    grid-area: survey;
    overflow: hidden;
    /* 16:9 aspect ratio */
    padding-top: 0%;
    position: relative;
}

#survey iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}

#contents{
    grid-area: contentpanel;
    display:grid;
    grid-template-columns: repeat(2, 1fr);
}

button{
    background-color: rgba(228, 151, 198, 0.621);
    font-size: 20px;
    border-radius: 5%;
}