css /* style.css */ body { margin: 0; padding: 0; background-color: #ff0033; /* deep pink */ font-family: 'Robot Font', sans-serif; font-size: 18px; line-height: 1.2; font-weight: bold; background-image: linear-gradient(to bottom, #ff0033, #ff0033 50%, #ff9900); background-size: 100% 20px; background-position: 0 0; -webkit-background-clip: border-box; border: 4px solid black; } h1 { font-size: 48px; line-height: 1; font-weight: bold; color: #000000; /* black */ background-color: #ff0033; border: 4px solid black; -webkit-text-emphasis: none; text-align: center; } h2 { font-size: 24px; line-height: 1; font-weight: bold; color: #000000; /* black */ background-color: #ff0033; border: 4px solid black; -webkit-text-emphasis: none; text-align: center; } h3 { font-size: 20px; line-height: 1; font-weight: bold; color: #000000; /* black */ background-color: #ff0033; border: 4px solid black; -webkit-text-emphasis: none; text-align: center; } p { font-size: 18px; line-height: 1.2; font-weight: bold; color: #000000; /* black */ background-color: #ff0033; border: 4px solid black; text-align: center; -webkit-text-emphasis: none; }