Calculator

body { font-family: Arial, sans-serif; background-color: #f4f4f4; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; color: red; /* Sets the text color to red for the entire body */ } .calculator { background-color: white; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); width: 300px; } header h1 { text-align: center; font-weight: bold; /* Makes the header text bold */ } .calculator h2, .calculator label, .calculator select, .calculator input, #result { font-weight: bold; /* Makes all text within the calculator bold */ } /* Rest of the CSS remains the same */