body {
    font-size: 14px;
    color: #323232;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

.internet-card {
    box-shadow: inset 0 -4.54px 9.09px 0 rgba(253, 64, 64, .25), 0 4.87px 20.31px 0 rgba(255, 47, 47, .15);
}

.speed-statement {
    box-shadow: 0 24px 50px 0 rgba(0, 0, 0, .05);
    backdrop-filter: blur(4px);
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}