body {
    font-family: "Roboto";
}

h1 {
    font-size: 2rem;
}

h1,h2 {
    line-height: 1.5rem;
    margin: 0;
}

h2 {
        font-style: italic;
}

h2, h3 {
    font-size: 1rem;
    font-weight: lighter;
}

h4 {
    font-size: 0.7rem;
    font-weight: lighter;
    margin-top: 5px;
}

button {
    font-family: "Roboto";
    background-color: white;
    border: 1px solid black;
}

.header {
    text-align: center;
    top: 0px;
    height: 120px; /* Change with top of .mapwrapper */
    width: 100%;
}

.footer {
    position: fixed;
    text-align: center;
    background-color: gainsboro;
    bottom: 0px;
    height: 20px; /* Change with bottom of .mapwrapper */
    width: 100%;
}

.mapwrapper {
    position: absolute;
    top: 120px; /* Change with Height of .header */
    bottom: 20px; /* Change with Height of .footer */
    left: 0;
    width: 100%;
    overflow: hidden;
}
.mapwrapper iframe {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 0;
} 

.info-window-content{
    padding: 8px;
}

input::placeholder {
    font-family: "Roboto";
    font-size: 1.1em;
}

.overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 1; 
    
}

a {
    text-decoration: none;
}

a:link, a:visited {
    color: #CC3366;
}

a:hover {
    background-color: #DAF7A6
}