@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Spectral&display=swap');
.stats {
    font-family: "Spectral", sans-serif;
    font-weight: bold;
    font-size: 32px;
    text-align: center;
}
body {
    font-family: "Cal Sans";
}
#header {
    text-align: center;
}
#tot-debt {
    border-style: solid;
    border-radius: 14px;
    border-width: 8px;
    border-color: red;
    padding-right: 12px;
    padding-left: 12px;
}
#tot-debt-container {
    width: fit-content;
    margin: auto;
    cursor: pointer;
}
#tooltip {
    margin: auto;
    border-style: solid;
    border-radius: 14px;
    border-width: 8px;
    border-color: black;
    width: 400px;
    height: 100px;
    position: relative;
}
#tooltip-text {
    margin: auto;
    padding: 8px;
}
#source-text {
    position: absolute;
    bottom: 8px;
    right: 8px;
    color: black;
    text-decoration: none;
}