@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');

*{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
}

html{
    height: 100%
}

body{
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

svg{
    background-color: rgb(13, 1, 1);
    box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
    border-radius: 5px;
    padding: 10px;
}

.bar{
    background-color: #cf4314;
    border-color: #326d3f;
    fill: rgb(11, 243, 81);
}

.bar:hover{
    fill: #d50c1a;
}

g{
    color: rgb(12, 216, 128);
    font-size: 8px;
    font-weight: bold;
}

#tooltip{
    position: absolute;
    text-align: center;
    padding: 2px;
    margin-top: 10px;
    color: #86efef;
    font-size: 28px;
    border: 0px;
    border-radius: 8px;
    pointer-events: none;
}

#title{
    font-size: 30px;
    fill: rgb(226, 35, 13);
    font-weight: bold;
}

