/*

/* ==========================================
 * АВТОМАТИЧЕСКОЕ МАСШТАБИРОВАНИЕ СТРАНИЦЫ
 * ==========================================
 * Все размеры конвертированы в rem (1rem = 16px на 1600px)
 * Медиа-запросы оставлены в px (стандарт)
 * ========================================== */

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

/* Десктоп: масштабирование 1600px → 767px */
@media screen and (min-width: 768px) and (max-width: 1600px) {
  html {
    font-size: 1vw;
  }
}

/* Мобильная версия: 767px → 370px */
@media screen and (max-width: 767px) {
  html {
     font-size: calc(16 * 0.2702702703vw)
  }
}


.text-button--u-irm5539m8 {font-family: 'Roboto'; font-weight: 500;}
.button--u-i2peweaxj:hover {border-top-color: rgba(181, 190, 255, 1); border-left-color: rgba(181, 190, 255, 1); border-right-color: rgba(181, 190, 255, 1); border-bottom-color: rgba(181, 190, 255, 1);}
