Read the following Python program snippet:
temperature = float(input("Enter temperature: "))
if temperature > 37.5:
print("Fever detected")
elif temperature < 35.0:
print("Hypothermia warning")
else:
print("Normal temperature")
Give the keyword that is used to start the selection structure in this code.