body {
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: white;
    overflow: hidden;
    font-family: 'Public Sans', sans-serif;
}

a {
    color: #00AAE7;
  }
  
a :hover {
    background-color: #f6931f;
  }

.container {
    height: 90%;
    width: 100%;
}

#console {
    height: 92%;
    width: 30%;
    color:#0D2D6C;
    padding: 5px;
    background-color: #9ECF7C;
    position: absolute;
    right:0;
    overflow: auto;
}

#map {
    position: absolute;
    height: 100%;
    width: 70%;
    background-color: #ffffff;
    left:0;
}
  
 .header {
  overflow: hidden;
  background-color: #3c444d;
  height: 10%;
}

.header_txt {
    color:white;
    font-size:30px;
}

/* Create two equal columns that floats next to each other */
#title_span {
    position: fixed;
    left: 2vw;
    padding: 10px;
    display: block;
    margin: auto;
}

#logo_span{
    float: right;
    right: 1vw;
    padding: 10px;
    display: block;
    margin: auto;
}

#subtitle{
    color:white;
    text-decoration: underline;
}

.plot {
    padding: 10px;
}

svg {
    stroke: #0D2D6C;
}

/* css to customize Leaflet default styles  */
.custom .leaflet-popup-tip,
.custom .leaflet-popup-content-wrapper {
    background: #3c444d;
    color: #ffffff;
    font-size: 1vw;
    font-family: 'Public Sans', sans-serif;;
}
  
#dot1 {
    border-radius: 50%;
    width: 15px;
    height: 15px;
    float: left;
    padding: 0.5em;
    background-color: #FDB515;
    border: 2px solid #0D2D6C;
}
  
#dot2 {
    border-radius: 50%;
    width: 15px;
    height: 15px;
    float: left;
    padding: 0.5em;
    background-color: #d3d3d3;
    border: 2px solid #0D2D6C;
}

@media only screen and (max-width: 1000px){
    #title_span {
        position: fixed;
        left: 2vw;
        font-size: x-large;
        padding: 1px;
        display: block;
        margin: auto;
    }
    
    #logo_span{
        float: right;
        right: 1vw;
        padding: 5px;
        display: block;
        margin: auto;
    }
}