html {
    background-color: rgb(191, 189, 195);
    min-height: 100vh;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', Times, serif;
    color: #000000;
    min-height: 100vh;
}

h1 .logo { /* Targeting the image specifically within the h1 */
    display: inline-block; /* Makes the image behave inline but allow block properties */
    vertical-align: middle; /* Aligns the image vertically with the text */
    margin-right: 10px; /* Add some space between the image and text */
}

h1 {
    display: inline-block; /* Makes the h1 itself behave like an inline-block */
    /* You might still need to adjust margin on the h1 if it's outside a flex container */
    /* margin: 0; */
}

.logo {
    display: block;
    margin: 2px auto;
    width: 70px;
}

.contact ul {
    list-style: none;
}

section {
    background-color: #ffffff;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    font-size: 1.2em;
    margin-top: 20px;
    padding: 10px;
}

-----map API ------------------------------------------
/* Always set the map height explicitly to define the size of the div
 * element that contains the map. */
gmp-map {
  height: 100%;
}

/* Optional: Makes the sample page fill the window. */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}