﻿/* ===== ШРИФТЫ ===== */
@font-face {
    font-family: 'Fira Sans';
    src: url('/Fira_Sans/FiraSans-Regular.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ===== CSS ПЕРЕМЕННЫЕ ===== */
:root {
    --bg-color: #e4e4e4;
    --primary-color: #f00;
    --text-color-primary: #fff;
    --default-color: black;
    --primary-border: 3px solid #f00;
    --primary-font: "Fira Sans", sans-serif;
}

/* ===== БАЗОВЫЕ СТИЛИ ===== */
html {
    font-family: var(--primary-font);
}

body {
    font-size: 16px;
    line-height: 1.5;
}

    body::-webkit-scrollbar {
        width: 6px;
    }

    body::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    body::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
    }

        body::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

/* ===== ТИПОГРАФИЯ ===== */
h1 {
    font-size: 24px;
    font-weight: bold;
}

h2 {
    font-size: 22px;
    font-weight: bold;
}

h3 {
    font-size: 20px;
    font-weight: bold;
}

h4 {
    font-size: 18px;
    font-weight: bold;
}

h5 {
    font-size: 16px;
    font-weight: bold;
}

h6 {
    font-size: 14px;
    font-weight: bold;
}

p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}


.footer {
    background: #323232;
    color: white;
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

    .footer .row img {
        max-width: 100%;
        padding: 5px;
    }

    .footer li {
        list-style: none;
        margin: 5px 0;
    }

    .footer a {
        color: white;
        text-decoration: none;
    }

        .footer a:hover {
            text-decoration: underline;
        }
