/* This style is to help make fonts scale and be readable
	on both cell phones and PC windows  */
	
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;

            /* Responsive font size with minimum and maximum limits */
            font-size: clamp(18px, 2vw, 24px);
            line-height: 1.6;
        }

        h1 {
            font-size: clamp(32px, 5vw, 56px);
            color: #333;
        }

        h2 {
            font-size: clamp(24px, 3vw, 40px);
            color: #555;
        }
 
        p {
            font-size: clamp(18px, 2vw, 24px);
        }
		
		/*
		li {
            font-size: clamp(18px, 2vw, 24px);
        }
*/
        .container {
            max-width: 1200px;
            margin: auto;
        }
    </style>