
body {
    font-family: 'Manrope', sans-serif;
}

/* Navigation bar at top */
#nav-bar {
    display: flex;
    justify-content: flex-end;
    font-family: 'Manrope', sans-serif;
}


#nav-bar ul {
    list-style-type: none;
    margin: 0;
    padding:0;
}

#nav-bar ul li {
    display: inline-block;
    font-size: 2em;
    margin: 0 1em;
}

a:link {
    text-decoration: none;
    color: black;
}
  
a:visited {
color: black;
}
  
a:hover {
color: green;
}

/* Title */
#title {
    font-family: 'Manrope', sans-serif;
    font-size: 2em;
    text-align: center;
    padding: 0;
    margin: 0;
}

/* Intro */
#intro {
    font-family: 'Manrope', sans-serif;
    text-align: center;
    font-size: 1em;
    margin-left: 2em;
    margin-right: 2em;
    padding: 20px;
    
}

/* Visualizations */
#segment-control {
    display: flex;
}

#segment-control button {
    font-size: 1.5em;
    width: 6em;
    height: 2em;
    cursor: pointer;
}

#visuals-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 1em;
    grid-row-gap: 0px;
    padding-left: 25px;
}

#visuals {
    /* display: flex; */
    font-family: 'Manrope', sans-serif;
    grid-area: 1 / 1 / 2 / 2;
}

#desc {
    font-family: 'Manrope', sans-serif;
    grid-area: 1 / 2 / 2 / 3;
}

#vis-desc {
    font-family: 'Manrope', sans-serif;
    width: 55vw;
    padding: 25px;
}

#map-chart {
    background-color: rgb(178, 210, 221);
}

.tooltip {
    background-color: "white";
    border-radius: 5px 5px 5px 5px;
    border: 0 none;
    box-shadow: -3px 3px 15px #888888;
    background: none repeat scroll 0 0 white;
    position: absolute;
    padding: 5px;
    text-align: center;
    color: black;
    font-family: "Manrope", sans-serif;
}

.countryLines {
    fill: none;
    stroke: "white";
    stroke-width: 0.2;
}

.legend {
    line-height: 18px;
    color: #555;
}
.legend i {
    width: 18px;
    height: 18px;
    float: left;
    margin-right: 8px;
    opacity: 0.7;
}