.font-theme {
    font-family: 'Inter', sans-serif;
    color: #1A1A1A; /* Цвет текста */
}

/* Тонкий шрифт (100) */
.font-thin {
    font-weight: 100;
}

/* Очень легкий шрифт (200) */
.font-extra-light {
    font-weight: 200;
}

/* Легкий шрифт (300) */
.font-light {
    font-weight: 300;
}

/* Обычный (400) */
.font-regular {
    font-weight: 400;
}

/* Средний шрифт (500) */
.font-medium {
    font-weight: 500;
}

/* Полужирный (600) */
.font-semi-bold {
    font-weight: 600;
}

/* Жирный (700) */
.font-bold {
    font-weight: 700;
}

/* Очень жирный (800) */
.font-extra-bold {
    font-weight: 800;
}

/* Максимально жирный (900) */
.font-black {
    font-weight: 900;
}

h1 {
    font-size: 80px;
    font-weight: 700;
    color: #1A1A1A;
}

h2 {
    font-size: 68px;
    font-weight: 700;
    color: #1A1A1A;
}

h5 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
}

.s-16 {
    font-size: 16px;
}

.s-20 {
    font-size: 20px;
}

.text-violet {
    color: #9290F3; /* Основной цвет фиолетовый */
    text-decoration: none; /* Убираем подчеркивание */
}

.text-violet:hover {
    color: #9290F3; /* Основной цвет фиолетовый */
    text-decoration: underline; /* Подчеркивание при наведении */
}


.text-black {
    color: #1A1A1A; /* Бирюзовый */
}

.text-tertiary {
    color: #66D7D1; /* Бирюзовый */
}

