body {
    margin: 0;
    padding: 0;
}

h2,
h3 {
    margin: 10px;
    font-size: 1.2em;
}

h3 {
    font-size: 1em;
}

h4 {
    margin-bottom: 15px;
    margin-top: 5px;
    text-align: center;
}

p {
    font-size: 0.85em;
    margin: 10px;
    text-align: left;
}

/**
* Create a position for the map
* on the page */
#map {
    position: absolute;
    top: 7%;
    left: 20%;
    width: 80%;
    height:93%;
}

/**
* Set rules for how the map overlays
* (information box and legend) will be displayed
* on the page.*/
.map-overlay {
    position: absolute;
    bottom: 2em;
    right: 0;
    margin-right: 20px;
    font-family: Arial, sans-serif;
    overflow: auto;
    border-radius: 3px;
    display: flex;
    /**grid-template-columns: 35em;
    grid-template-rows: 14em 2em;
    justify-items: end;*/
    flex-direction: column;
}

#features {
    top: 0;
    height: 100px;
    margin-top: 20px;
    width: 250px;
}

#legend {
    padding: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.maplibregl.popup {
    border-radius: 5px;
    border-color: DodgerBlue;
    border-style: solid;
    box-shadow: 0 3px 14px rgba(0,0,0,0.4)
}

.maplibregl-popup{
    max-width: 100%;
}

.maplibregl-popup-content {
    width: max-content;
    padding:4px;
    /*max-height: 100px;*/
    /*border-style: solid;*/
    /*font-family: 'Open Sans', sans-serif;*/
    font-weight: bold;
    /*font-size: 8px;*/
    /*padding:0;*/
    border-radius: 15px;
    border-color: DodgerBlue;
}

.maplibregl-popup-content h1 {
    color: rgb(42, 198, 130);
    font-size: medium;
}

.maplibregl-popup-content h2 {
    color: rgb(42, 104, 198);
    font-size: small;
}

.maplibregl-popup-content h3 {
    font-size: small;
    font-weight: 200;
}

.maplibregl-popup-content p {
    font-weight: bold;
    display: contents;
}