/* 1. ИМПОРТ ШРИФТА PLAYFAIR DISPLAY */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* 2. ПРИМЕНЕНИЕ ШРИФТА PLAYFAIR DISPLAY КО ВСЕМУ ИНТЕРФЕЙСУ */
body, 
.ui, 
.status__content, 
.account__header .account__header__tabs__name h1,
.reply-indicator__content, 
.getting-started,
textarea, 
input {
  font-family: 'Playfair Display', Georgia, Cambria, "Times New Roman", Times, serif !important;
}

/* 3. УВЕЛИЧЕНИЕ БАЗОВОГО ШРИФТА ИНТЕРФЕЙСА И МЕНЮ */
body, .ui, textarea, input, .column-header__title, .display-name strong {
  font-size: 18px !important; /* Значительно увеличенный размер для всего интерфейса */
  line-height: 1.5 !important; /* Комфортный межстрочный интервал */
}

/* 4. ЕЩЕ БОЛЬШЕЕ УВЕЛИЧЕНИЕ ТЕКСТА САМИХ ПОСТОВ */
.status__content, .detailed-status__content, .reply-indicator__content {
  font-size: 19px !important; /* Крупный, журнальный размер для текста публикаций */
  line-height: 1.6 !important; /* Увеличен отступ между строками для крупных букв */
}

body {
  background-color: #f5f5ff !important;
}


