body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Roboto", sans-serif;
}

#tooltip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    font: 12px;
    padding: 10px;
    background-color: rgb(0, 0, 0, 0.8);
    box-shadow: 1px 1px 10px;
    border-radius: 2px;
    pointer-events: none;
    color: white;
    opacity: 0;
}

#tooltip p {
    text-align: center;
    margin: 5px 0;
}

path:hover {
    fill: black;
}

h1 {
    font-size: 58px;
}