@import url('https://fonts.googleapis.com/css?family=Rajdhani:400,600,700&display=swap');
body{
    padding: 0;
    margin: 0;
    overflow: hidden;
    background-color: #5DA698;
}

/* http://stackoverflow.com/questions/51396703/how-to-make-pins-follow-a-map */
/* https://developer.mozilla.org/en-US/docs/Web/HTML/Element/map */
    .map{
        display: inline-block;
        position: relative;
        margin: 0 auto;
        width: 100vw;
        height: calc(100vw * (1688 / 3000));
    }
    .foreground{
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        width: 100%
    }
h1{
    color: azure;
    font-family: 'Rajdhani', sans-serif;
    padding: 5mm;
    float: left;
}

#map_background{
    width: 100%;
    height: 100%;
    display: block;
}

#title{
    color: azure;
    font-family: 'Rajdhani', sans-serif;
    padding: 5mm;
    float: right;
}

#about{
    color: azure;
    font-family: 'Rajdhani', sans-serif;
    padding: 5mm;
    float: left;
    margin-top: 3.25vh;
}

#about:hover{
    /*width: 5vh;
    height: 5vh; */
    z-index: 100;
    filter: invert(1)
}


.pins{
    width: 3%;
    height: 3%;
    position: absolute;
    transition: 0.3s; 
    display: block;
    background-image: url('img/pin.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    transform: translateX(-50%) translateY(0%)
}


#Maryland{
    left: 27.8%;
    top: 41%;
}

#New_York{
    left: 28.5%;
    top: 40%;
}

#Texas{
    left: 22.5%;
    top: 45%;
}

#Dakar_Senegal{
    left: 43.7%;
    top: 53.3%;
}

.pins:hover{
    /*width: 5vh;
    height: 5vh; */
    z-index: 100;
    filter: invert(1)
}

