body {
    font-family: 'Abhaya Libre', serif;
    /* font-family: 'Taviraj', serif;
     font-family: 'Alegreya', serif;*/
    background-color: rgb(37, 37, 35);
    color: white;
}

#load {
    font-size: 4em;
}

p {
    font-size: 1.22em;
}

h1 {
    text-transform: uppercase;
    font-size: 4em;
}

#year-legend {
    margin-top: 0px;
}

.annotations path{
    fill: none;
    stroke: white;
}

.annotations text {
    font-size: 12.5px;
}

#arrow {
    fill: white;
    stroke: white;
}

.charts {
    margin-top: 50px;
}

.averages h4 {
    display: inline-block;
}

.axis path,
.axis line {
    stroke: white;
    fill: none;
}

.text-top {
    width: auto;
}

.graph {
    float: left;
}

text {
    fill: white;
    stroke: none;
}


text.label {
    font-size: 85%;
    stroke: none;
}

.opaque {
    opacity: 0;
}

.lower {
    margin-top: 35px;
}

div {
    width: auto
}

div svg {
    display: inline-block;
}

a, a:visited, a:hover {
    color: orange;
}

footer {
    margin-top: 25px;
}

footer ul {
    text-align: center;
}

footer ul li {
    display: inline;
    margin-left: 25px;
    font-size: 1.4em;
}

.subfooter {
    margin-top: 50px;
    margin-bottom: 25px;
}

/* D3 tip CSS */

.d3-tip {
    line-height: 1;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 8px;
    pointer-events: none;
    height: auto;
    width: auto;
}

/* Creates a small triangle extender for the tooltip */
.d3-tip:after {
    box-sizing: border-box;
    display: inline;
    font-size: 10px;
    width: auto;
    line-height: 1;
    color: rgba(0, 0, 0, 0.8);
    position: absolute;
    pointer-events: none;
}

/* Northward tooltips */
.d3-tip.n:after {
    content: "\25BC";
    margin: -1px 0 0 0;
    top: 100%;
    left: 0;
    text-align: center;
}

/* Eastward tooltips */
.d3-tip.e:after {
    content: "\25C0";
    margin: -4px 0 0 0;
    top: 50%;
    left: -8px;
}

/* Southward tooltips */
.d3-tip.s:after {
    content: "\25B2";
    margin: 0 0 1px 0;
    top: -8px;
    left: 0;
    text-align: center;
}

/* Westward tooltips */
.d3-tip.w:after {
    content: "\25B6";
    margin: -4px 0 0 -1px;
    top: 50%;
    left: 100%;
}