@font-face {
    font-family: "LexendPeta";
    src: url("font/Inter-Regular.woff2") format("woff2"),
    url("font/Inter-Regular.woff") format("woff"),
    url("font/Inter-Regular.ttf") format("ttf"),
    url("font/Inter-Regular.eot") format("eot");
    font-weight: normal;
}

@font-face {
    font-family: "LexendPeta";
    src: url("font/Inter-SemiBold.eot") format("woff2"),
    url("font/Inter-SemiBold.woff") format("woff"),
    url("font/Inter-SemiBold.ttf") format("ttf"),
    url("font/Inter-SemiBold.eot") format("eot");
    font-weight: bold;
}


* {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
    box-sizing: border-box;
}

body {
    font-family: "LexendPeta", serif;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

.frame-container {
    height: calc(100% - 80px); /* Учитываем высоту нижней части */
    background-color: #FFFFFF;
}

.bottom-container {
    width: 100%;
    height: 80px;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    display: flex;
    background-color: #FFFFFF;
    border-top: 2px solid #efefef; /* Добавляем серую полоску сверху */
    justify-content: space-around; /* Распределяем кнопки по горизонтали */
    align-items: center; /* Центрируем кнопки по вертикали */
}

.button-bottom {
    display: flex;
    flex-direction: column; /* Располагаем иконку и текст вертикально */
    align-items: center; /* Центрируем содержимое внутри кнопки */
    cursor: pointer; /* Указываем, что это интерактивный элемент */
}

.button-bottom.selected {
    filter: brightness(0) saturate(100%) invert(44%) sepia(97%) saturate(4535%) hue-rotate(185deg) brightness(105%) contrast(101%); /* Применяем фильтр для изменения цвета изображения */
}

.button-bottom:hover {
    filter: brightness(0) saturate(100%) invert(44%) sepia(97%) saturate(4535%) hue-rotate(185deg) brightness(105%) contrast(101%); /* Применяем фильтр для изменения цвета изображения при наведении */
}

.icon-bottom {
    width: 20px; /* Ширина иконки */
    height: 20px; /* Высота иконки */
}

#backButton {
    position: fixed; /* Фиксируем кнопку на экране */
    top: 40px; /* Расположение от нижнего края */
    left: 20px; /* Расположение от правого края */
    padding: 10px 20px;
    background-color: #000000; /* Цвет фона */
    color: white; /* Цвет текста */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000; /* Убедитесь, что кнопка поверх остальных элементов */
}