       /* ขนาดหน้าจอเล็ก (มือถือ) */
       @media (max-width: 600px) {
        .dashfont {
            font-size: 16px;
            font-weight: bold;
        }
    }

    /* ขนาดหน้าจอปานกลาง (แท็บเล็ต) */
    @media (min-width: 601px) and (max-width: 1024px) {
        .dashfont {
            font-size: 20px;
            font-weight: bold;
        }
    }

    /* ขนาดหน้าจอใหญ่ (Desktop) */
    @media (min-width: 1025px) {
        .dashfont {
            font-size: 50px;
            font-weight: bold;
        }
    }