/* this is Original Phielcy font and it is OK */
@font-face {
    font-family: kristen-itc;
    src: url('fonts/ITCKRIST.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* this is OK but invisible horizontal lines in chars*/
@font-face {
    font-family: unibody-8;
    src: url('fonts/Unibody_8_Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* it is OK, but all letters are uppercase */
@font-face {
    font-family: 'joystix';
    src: url('fonts/joystix-monospace.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* not bad with xx-large size, but all letters are uppercase */
@font-face {
    font-family: day-dream;
    src: url('fonts/Daydream.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* this is OK (similar to 'unibody-8') */
@font-face {
    font-family: press-start;
    src: url('fonts/PressStart2P.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Real Pixel Bitmap Font! :) */
@font-face {
    font-family: bm-mini;
    src: url('fonts/BMmini.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}










/* --------------------------------------------- */
/*                 A P P L Y                     */
/* --------------------------------------------- */


* {
    font-family: 'bm-mini';
    font-size: large;
    border-radius: 0px !important;
}

form {
    /* font */
    /* font-family: 'bm-mini' !important;
    font-size: medium !important; */
}

@media (max-width: 738px) {

    * {
        font-size: large;
    }

    form {
        /* font-size: large !important; */
    }

}