@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap');

html {background-color: #5d757e}

text {color: white}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

h1 {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight:500;
    color: white
}

/* using this one for the tooltip */
h2 {
    letter-spacing: 1px;
}

p {
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.5em;
    color: white
}

a, a:visited {color: white;}

.text-container {
    max-width: 90%; 
    margin: 0 auto
}

.wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    /* grid-template-rows: 50px 50px; */
}

@media only screen and (max-width: 800px) {
    .wrapper {
      grid-template-columns: 1fr;
    }
  }

#map {
    width: 100%;
    height: 600px;
    margin: 5em auto;
}

#map2 {
    width: 100%;
    height: 600px;
    margin: 5em auto;
}

#map3 {
    width: 100%;
    height: 600px;
    margin: 5em auto;
}

#map4 {
    width: 100%;
    height: 600px;
    margin: 5em auto;
}

.mapboxgl-popup-content {
    max-height:300px;
    overflow-y: scroll;
    }

.mapboxgl-popup-content h4 {
    font-weight: 300;
    font-size: 1.2em;
    /* border-width: 0px 0px 0.5px 0px;
    border-style: solid;
    border-color: rgb(80, 80, 80); */
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
.mapboxgl-popup-content h2 {
    font-weight: 500;
    margin-top: 0.5em;
    margin-bottom: 0.3em;
}
.mapboxgl-popup-content p {
    font-weight: 300;
    margin-top: 0.3em;
    margin-bottom: 0em;
}

/* legend 1 */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    margin-left: 10px;
    margin-top: 10px;
    font-family: Roboto;
    font-weight: 300;
    font-size: 1.25em;
    overflow: auto;
    border-radius: 3px;
    z-index:1;
  }
  
#features {
top: 0;
height: 100px;
margin-top: 20px;
width: 250px;
}

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

.legend-key {
display: inline-block;
border-radius: 20%;
width: 10px;
height: 10px;
margin-right: 5px;
}