* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 16px;
    background-color: rgb(143, 222, 236);
}

svg {
    background: whitesmoke;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: cyan;
}
#description {
    margin: 0.25rem;
}
#tooltip {
    position: absolute;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    margin: 0.25rem auto;
    padding: 0.5rem;
    visibility: hidden;
    height: auto;
    width: 100px;
    justify-content: center;
    align-items: center;
    background-color: #0a0a23;
    border-radius: 5px;
    color: whitesmoke;
}
#legend {
    height: 50vh;
}
/* svg > rect {
    border-radius: 50%;
} */
text {
    color: #0a0a23;
}
