@font-face {
    font-family: 'RobotoCondensed-Bold';
    src: url('assets/fonts/RobotoCondensed-Bold.ttf');
}

@font-face {
    font-family: 'RobotoCondensed-Regular';
    src: url('assets/fonts/RobotoCondensed-Regular.ttf');
}

@font-face {
    font-family: 'Pangolin-Regular';
    src: url('assets/fonts/Pangolin-Regular.ttf');
}

body, html, canvas, #game-container {
    -webkit-user-select: none;  /* Chrome, Safari, Opera */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* Internet Explorer/Edge */
    user-select: none;          /* Стандартный синтаксис */
    -webkit-touch-callout: none; /* Отключение контекстного меню на iOS */
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* Отключение подсветки при нажатии на мобильных устройствах */
    touch-action: none; /* Отключение жестов по умолчанию */
}

body {
    margin: 0;
    padding: 0;
    background-image: url('assets/background.jpg');
    background-size: cover;
}

#app {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}