@charset "utf-8";
/* CSS Document */
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    .MyFonts {
        font-size: 75%;
    }
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width : 321px) {
    .MyFonts {
        font-size: 100%;
        color: #fff;
    }
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 320px) {
    .MyFonts {
        font-size: 120%;
    }
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
    .MyFonts {
        font-size: 120%;
    }
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
    .MyFonts {
        font-size: 150%;
    }
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {

    .MyFonts {
        font-size: 120%;
    }
}
/* Desktops and laptops ----------- */
@media only screen and (min-width : 1224px) {
    .MyFonts {
        font-size: 156%;
    }
}
/* Large screens ----------- */
@media only screen and (min-width : 1824px) {
    .MyFonts {
        font-size: 200%;
    }
}
/* iPhone 4 ----------- */
@media only screen and (-webkit-min-device-pixel-ratio : 1.5), only screen and (min-device-pixel-ratio : 1.5) {
    .MyFonts {
        font-size: 190%;
    }
}
