@font-face {
    font-family: 'Satoshi';
    src: local('Satoshi Regular'),
         url('./Satoshi-Regular.woff2') format('woff2'),
         url('./Satoshi-Regular.woff') format('woff'),
         url('./Satoshi-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: local('Satoshi Bold'),
         url('./Satoshi-Bold.woff2') format('woff2'),
         url('./Satoshi-Bold.woff') format('woff'),
         url('./Satoshi-Bold.ttf') format('truetype');
    font-weight: 700; 
    font-display: swap;
    font-style: normal;
}


.tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}
