import urllib.request
import re

url = "https://charity-boat-race.base44.app/"
req = urllib.request.Request(url, headers={'User-Agent': 'Mozilla/5.0'})
try:
    with urllib.request.urlopen(req) as response:
        html = response.read().decode('utf-8')
        
        # look for inline styles in root or html
        match = re.search(r'style="([^"]*--font-body[^"]*)"', html)
        if match:
            print("INLINE STYLE:", match.group(1))
            
        match2 = re.search(r'<style[^>]*>(.*?)</style>', html, re.DOTALL)
        if match2:
            print("STYLE TAG:", match2.group(1))
except Exception as e:
    print(f"Error: {e}")
