@font-face {
    font-family: 'Anton';
    src: url('/fonts/Anton.ttf') format('truetype');
    font-weight: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter.ttf') format('truetype');
    font-weight: normal;
}


:root {
    --fs: 0.75vw;
    font-size: var(--fs);
    font-family: "Inter", sans-serif;
}
@media (max-width: 1279px) {
    :root {
        --fs: 1.5vw;
    }
}
@media (max-width: 767px) {
    :root {
        --fs: 2vw;
    }
}
@media (max-width: 639px) {
    :root {
        --fs: 2.75vw;
    }
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
