body {
    margin: 0;
    padding: 0;
    background-color: #333;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 100%;
}

h1 {
    font-weight: 700;
    font-size: calc(1.5rem + ((100vw – 400) / 400));
    color: "#2e2e2e";
    letter-spacing: 0.02em;
    margin: 20px 0;
}

h2 {
    font-weight: 500;
    font-size: 1.5em;
    letter-spacing: 0.04em;
    text-decoration: none;
    margin: 5px 0;
}

h3 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

h4 {
    font-size: 1.2em;
    margin-bottom: 5px;
}


a {
    color: #fff;
    font-weight: 500;
    text-decoration: underline;
}

a:hover {
    text-decoration: underline;
    color: #333300;
}

ul {
    padding: 0px 20px 4px 20px;
    font-size: 1.1em;
    line-height: 1.2em;
    color: #63666a;
}

li {
    margin: 10px 0;
}

#map {
    height: calc(60vh);
    background: #3f3f3f;
}

#geolocate-ui {
    border-radius: 8px;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
}

#dropdown-ui {
    width: 100%;
}

#bird-img img {
    width: 100%;
}

.bird-attr {
    font-size: .8em;
}

.legend {
    padding: 10px;
    font-size: 1.1em;
    background: rgb(213, 232, 235, .8);
  
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    width: 225px;
}

.legend-circle, .county-circle {
    width: 15px;
    height: 15px;
    float: left;
    margin-right: 8px;
    margin-top: 2px;
    vertical-align: bottom;
    border-radius: 50%;
    display: inline;
}

.legend-circle {
    border: 2px #32814c solid;
    background-color: rgba(50, 129, 76, .4);
}

.county-circle {
    border: 2px rgb(102, 51, 0) solid;
    background-color: rgba(102, 51, 0, .4);
}

.legend-label {
    display: inline;
}

footer {
    height: 50px;
    background-color:  #0e2516; 
    position: relative;
}

footer ul {
    font-size: 0.8rem;
    color:#e6e6e6;
}

footer a:hover {
    color: #f2f2f2;
}

aside {
    height: calc(40vh - 50px);
    background-color: #32814c;
    color: #fff;
}

.container-fluid {
    background-color: #333;
}

#locateFeedback {
    color: #fff;
    font-size: 1em;
}

/* Landscape devices all scenarios */
@media (orientation: landscape) {
    aside {
        display: block;
        height: calc(100vh - 50px);
    }

    #map {
        height: calc(100vh - 50px);
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    aside {
        display: block;
        height: calc(100vh - 50px);
    }

    #map {
        height: calc(100vh - 50px);
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    aside {
        display: block;
        height: calc(100vh - 60px);
       
    }

    #map {
        height: calc(100vh - 60px);
     
    }

    footer {
        height: 60px;
        font-size: 1rem;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.3em;
    }

    #dropdown-ui {
        margin-bottom: 20px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}