@font-face {
    font-family: 'FriedlBETA1'; /* Custom name to reference in CSS */
    src: url('fonts/FriedlBETA1-Medium.woff2') format('woff2');
    font-style: normal;
}

body {
    font-family: 'FriedlBETA1', Arial, sans-serif;
    font-size: 1.2rem;
}

a {
    text-decoration: none;
    color: black;
}

@keyframes dots-animation {
    0% { content: "."; }
    33% { content: ".."; }
    66% { content: "..."; }
    100% { content: ""; }
}

.dots::after {
    content: "..."; /* Default state */
    display: inline-block;
    animation: dots-animation 1.5s infinite steps(4);
}