/* styles.css */ body { background: #FF0000; /* Bright red */ font-family: 'Bebas Neue', sans-serif; line-height: 1.5; margin: 0; padding: 0; width: 100vw; height: 100vh; display: flex; justify-content: center; align-items: center; } h1 { font-size: 32px; text-transform: uppercase; letter-spacing: 4px; color: #000000; text-shadow: 0 0 0 #000000; border-bottom: 4px solid #000000; padding: 10px 20px; margin: 10px 20px; background: #FFFFFF; } h2 { font-size: 20px; text-transform: uppercase; letter-spacing: 4px; color: #000000; text-shadow: 0 0 0 #000000; border-bottom: 4px solid #000000; padding: 5px 10px; margin: 5px 10px; background: #FFFFFF; } h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 4px; color: #000000; text-shadow: 0 0 0 #000000; border-bottom: 4px solid #000000; padding: 2px 5px; margin: 2px 5px; background: #FFFFFF; } p { font-size: 12px; line-height: 1.5; color: #000000; text-shadow: 0 0 0 #000000; padding: 5px 10px; margin: 5px 10px; background: #FFFFFF; border: 1px solid #000000; border-bottom: 4px solid #000000; } a { font-size: 12px; line-height: 1.5; color: #000000; text-shadow: 0 0 0 #000000; text-decoration: none; background: #FFFFFF; border: 1px solid #000000; padding: 2px 5px; margin: 2px 5px; text-transform: none; } body:after { content: ""; display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(135deg, #FF0000 0, #FF0000 50%, #000000 50%, #000000 0); z-index: -1; }