css /* style.css */ body { background-color: #f0f0f0; background-image: linear-gradient(to bottom, #e6e6e6 0 0, #f7f7f7 50% 0); font-family: 'Bangers', cursive; font-size: 24px; line-height: 30px; margin: 0 auto; max-width: 800px; padding: 20px 20px 0 20px; position: relative; text-align: center; width: 90%; border: 4px solid black; box-sizing: border-box; } h1 { color: #ff00ff; font-size: 36px; font-weight: bold; letter-spacing: 4px; margin-bottom: 20px; text-align: center; text-transform: uppercase; } h2 { color: #ff00ff; font-size: 24px; font-weight: bold; margin-bottom: 10px; text-align: center; text-transform: uppercase; } h3 { color: #ff00ff; font-size: 18px; font-weight: bold; margin-bottom: 10px; text-align: center; text-transform: uppercase; } p { font-size: 18px; line-height: 25px; margin-bottom: 20px; text-align: center; color: #000000; background-color: #f7f7f7; padding: 10px 20px; border: 2px solid black; box-sizing: border-box; border-radius: 5px 20px 5px 20px; } a { color: #000000; text-decoration: none; background-color: #f7f7f7; padding: 10px 20px; border: 2px solid black; border-radius: 5px 20px 5px 20px; font-size: 18px; text-align: center; text-transform: uppercase; transition: all 0.5s; } a:hover { background-color: #f7f7f7; color: #000000; } code { background-color: #f7f7f7; border: 2px solid black; border-radius: 5px; font-size: 16px; line-height: 20px; margin-bottom: 20px; padding: 10px 20px; text-align: left; } pre { background-color: #f7f7f7; border: 2px solid black; border-radius: 5px; font-size: 16px; line-height: 20px; margin-bottom: 20px; padding: 10px 20px; text-align: left; }