css /* styles.css */ * { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); transition: transform 0.2s; } body { background-color: #F7DC6B; /* Bright Yellow */ font-family: 'VT323', Arial, sans-serif; color: #000000; /* Black */ margin: 0px; padding: 0px; } a { color: #FF69B4; /* Pink */ text-decoration: none; font-weight: bold; transition: color 0.2s; } h1 { color: #000000; /* Black */ font-size: 36px; text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); border-bottom: 4px solid #FF69B4; /* Pink */ padding-bottom: 8px; margin-bottom: 16px; } h2 { color: #000000; /* Black */ font-size: 24px; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 4px solid #FF69B4; /* Pink */ text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } h3 { color: #000000; /* Black */ font-size: 18px; margin-bottom: 8px; padding-bottom: 4px; border-bottom: 2px solid #FF69B4; /* Pink */ text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } p { color: #000000; /* Black */ font-size: 16px; line-height: 1.5; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid #000000; /* Black */ text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } a:visited { color: #FF69B4; /* Pink */ text-decoration: underline; }