@font-face {
    font-family: 'Arial Narrow';
    src: url('/assets/arial_narrow.woff') format('woff');
}
@font-face {
    font-family: 'Display Crisp W95 Regular';
    src: url('/assets/display-crisp-w95-regular.woff') format('woff');
}

html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    background-color: #000;
    font-family: Arial, sans-serif;
    touch-action: pan-x pan-y;
    touch-action: none;
    overflow: hidden; /* Ensure no scrollbars */
}

body {
    background-color: #000;
}

.marquee3k {
    width: 100%;
    height: 20%; /* Adjust height to divide the page equally among 5 marquees */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ticker-message {
    font-size: calc(10vw + 5vh); /* Dynamically adjust font size based on viewport width */
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
}

.ticker-message p {
    font-family: 'Display Crisp W95 Regular', sans-serif;
    display: inline-block;
    margin: 0 !important;
    font-size: inherit !important;
    color: #fff;
}

/* Disable text selection */
* {
    user-select: none;
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    cursor: default;
    /* Prevent cursor from changing */
}