/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* Body styles */
body {
    background-color: #fff; /* White background */
    color: #000; /* Black text color */
    font-family: 'PixeloidSans', Verdana, sans-serif; /* Use PixeloidSans font */
}

/* Define @font-face with fallback for older browsers */
@font-face {
    font-family: 'PixeloidSans';
    src: url('PixeloidSans.ttf') format('truetype'); /* URL to your font file */
}

/* Use Fontspring's syntax for better compatibility */
@font-face {
    font-family: 'PixeloidSans';
    src: url('PixeloidSans.woff2') format('woff2'), /* WOFF2 for modern browsers */
         url('PixeloidSans.woff') format('woff'); /* WOFF fallback for older browsers */
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Optional: improves text rendering performance */
}

/* Body styles with Fontspring's bulletproof syntax */
body {
    font-family: 'PixeloidSans', Verdana, sans-serif; /* Use PixeloidSans font */
}
