* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: benton-sans , sans-serif;
    font-weight: 100;
}

body {
    position: relative;
    min-height: 100vh;
    background-color: #24252A;
}

h2{
    font-weight: 500;
    font-size: 28px;
    padding-bottom: 20px;
}

h3, h3::first-letter{
    font-size: 18px;
    -webkit-initial-letter: 2;
    initial-letter: 2;
}

article{
    line-height: 150%;
}

.subhead::first-letter{
    -webkit-initial-letter: 2;
    initial-letter: 2;
}

.initial-letter{
    line-height: 70px;
    font-size: 35px;
}

li, a, button {
    font-size: 16px;
    color: #d3d3d3;
    text-decoration: none;
}

.Bartitle{
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    color: black;
    text-align: center;
}

#BarName{
    font-size: 24px;
    color: black;
    text-align: center;
}

header{
    background: #1f1f24;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
}

.logo{
    background: #1f1f24;
    cursor: pointer;
    width: 80px;
    height: 80px;
}

.nav_links{
    background: #1f1f24;
    list-style: none;
}

.nav_links li{
    background: #1f1f24;
    display: inline-block;
    padding: 0px 20px;
}

.nav_links li a{
    background: #1f1f24;
    transition: all 0.3s ease 0s;
 }

.nav_links li a:hover{
    color: #0088a9;
}

button{
    padding: 9px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

button:hover {
    background-color: gray;
}

#footer-bottom {
    background: #1f1f24;
    bottom: 0;
    color: white;
    display: flex;
    grid-row: 2;
    height: 80px;
    position: absolute;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.section {
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    min-height: 20vh;
    color: #d3d3d3;
    background-color: #24252A;
}

.section:last-of-type{
    min-height: 350px;
}

div.tooltip {
    background: #333439;
    border: 1px;
    border-radius: 8px;
}

svg{
    border-style: solid;
    border-width: 1px;
    border-color: #333439;
    border-radius: 5px;
    display: block;
    margin-right: auto;
    margin-left: auto;
}

div{
    padding-top: 20px;
    padding-bottom: 20px;
}

#Barchart #Barchart2{
    padding-top: 50px;
}

hr {
    width: 90%;
    height: 1px;
    margin-left: auto;
    margin-right: auto;
    background-color: #d3d3d3;
    border: 0 none;
}

.axis path,
.axis line {
    fill: none;
    stroke: #333439;
    shape-rendering: crispEdges;
}

.line {
    fill: none;
}

.x.axis path {
    display: none;
}

.leftBox{
    float: left;
    width: 50%;
    overflow: hidden;
}

.rightBox{
    float: right;
    width: 50%;
    overflow: hidden;
}

.video{
    display: block;
    margin-right: auto;
    margin-left: auto;
}