@font-face {
    font-family: 'Teachers';
    src: url('../fonts/Teachers-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 800;
    /* Սա թույլ է տալիս օգտագործել 100-ից մինչև 800 բոլոր հաստությունները */
    font-style: normal;
    font-display: swap;
}

html,
body {
    overflow-x: hidden;
}

html {
    /* 1. Սահուն սքրոլ (Smooth Scroll) */
    scroll-behavior: smooth;

    /* 2. Կանխում է տեքստի չափսերի կամայական մեծացումը iOS (iPhone) բրաուզերներում */
    -webkit-text-size-adjust: 100%;
}

body {
    color: #ffffff;
    background-color: #000000;
    /* (Font Family Hierarchy) */
    font-family: 'Teachers', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* 3. Տեքստի տառերը դարձնում է առավելագույնս նուրբ, մաքուր և կլորացված (Anti-aliasing) */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* 5. Տեքստի ճիշտ դասավորում (rendering) */
    text-rendering: optimizeLegibility;
}

/* 6. Մոբայլում կոճակների կամ լինկերի վրա սեղմելիս հանուն է այդ տհաճ կապտավուն ֆոնը (Tap Highlight) */
a,
button,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}
/* 1. Chrome, Safari, Opera և բոլոր ժամանակակից բրաուզերների համար (Brave, Edge) */
/* html::-webkit-scrollbar {
    display: none;
} */

/* 2. Firefox-ի համար */
/* html {
    scrollbar-width: none;
} */

/* 3. Internet Explorer և հին Edge-ի համար */
/* html {
    -ms-overflow-style: none;
} */