You have a typo in the href. It should be styles.css instead of style.css.
styles.css
style.css
If that doesn't work, I think it might be due to how you are joining the path BASE_DIR / "static". Try using os.path.join(BASE_DIR, "static") instead.
BASE_DIR / "static"
os.path.join(BASE_DIR, "static")