/* Always set the map height explicitly to define the size of the div
       * element that contains the map. */
/*
#map {
  height: 100%;
}
*/

/* Optional: Makes the sample page fill the window. */
/* html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
} */

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}


.container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  /* important part */
  display: grid;
  place-items: center;
  grid-template-areas:
                  "inner-div";
}

.inner_txt {
  background-color: lightskyblue;
  height: 100px;
  width: 300px;
  grid-area: inner-div;
  padding: 0.5rem 0rem 0rem 1rem;
  z-index: 2;
  position: absolute;
  bottom: 30px;
  left: 20px;
  border-color: gray;
  border-width: 1px;
  border-style: solid;
}

.inner_txt h2 {
  font-size: larger ;
  font-weight: bold;
  margin: 0rem  0rem 0rem 0rem;
  text-align: center;
  line-height: 1.3rem;
}

.inner_txt p {
  margin: 0.4rem 0rem 0.3rem 0rem
}

.inner_txt em {
  font-size: normal;
  font-weight: normal;
  font-style: normal;
  line-height: 1,3rem;
}

.inner_txt strong {
  font-size: small;
  font-weight: bold;
  font-style: normal;
  line-height: 0.5rem;
}

.inner_map{
  z-index: 1;
  height: 100%;
  width: 100%;
  /* important part */
  grid-area: inner-div;
}

#map {
  flex-basis: 0;
  flex-grow: 4;
  height: 100%;
}
