/* Import the custom font */
@font-face {
    font-family: 'Facebook Sans';
    src: url('../src/assets/fonts/FacebookSansBold.ttf') format('truetype'); /* Ensure the path is correct */

    
}

/* These styles ensure the body and root are full-height */
html,
body {
    height: 100%;
}

body {
    overflow: hidden; /* Disables body scrolling if you're using ScrollView */
    margin: 0; /* Removes default margin */
    font-family: 'Facebook Sans', sans-serif; /* Apply the custom font */
}

#app-root {
    display: flex;
    height: 100%;
}
