@import url('https://fonts.googleapis.com/css?family=Rajdhani:400,600,700&display=swap');
body{
    padding: 0;
    margin: 0;
}
    .backgroundImage{
        width: 100vw; 
        height: 100vh;
        background-size: cover;
        background-image: url("./img/worldMap.jpg");
        background-repeat: none;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .foreground{
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        width: 100%
    }
h1{
    color: azure;
    font-family: 'Rajdhani', sans-serif;
    padding: 5mm;
    float: left;
}

#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: 4vh;
    height: 4vh;
    position: absolute;
    transition: 0.3s; 
}

#Maryland{
    left: 47.5vh;
    top: 40vh;
}

#New_York{
    left: 49vh;
    top: 38vh;
}

#Texas{
    left: 38vh;
    top: 44vh;
}

#Dakar_Senegal{
    left: 75.5vh;
    top: 52.5vh;
}

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