
@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;
}

.flag:after {
    position: absolute;
    content: "";
    border-width: 1.4rem;
    border-style: solid;
    top: 0;
    left: 100%;
    height: 100%;
    border-color: #da2626;
    border-right-color: transparent !important;
}