@font-face {
    font-family: 'MyFont';
    src: url('/font') format('woff2');
    /* Add other font formats if needed */
  }

  body {
    font-family: 'MyFont', sans-serif; /* Apply your custom font */
    
    background-image: url('/bg'); /* Adjust the path to your image */
    background-size: 1920px 1080px;/* Set a fixed pixel value for the background size */
    background-position: center; /* Center the background image */
    background-attachment: fixed; /* Fix the background image so it doesn't scroll with content */
}