prompt to make this project make me an html css js code in one file that takes the current grade percent and the wanted grade percent and the total fianl exam percentage and calculate how much percent you need to get the wanted gradee
changed the text color of the calculate button
changed exam weight to final exam total grade
changed score needed title to score you want
added maximum cap to the grade needed to 100%+ instead of 115% or more
const required = Math.min((desired - current * (1 - weight / 100)) / (weight / 100),100);