css /* Style sheet for Corgi Blackmail's Services Page */ body { background-color: #f0f0f0; font-family: Arial, sans-serif; margin: 0; } #services { background-image: linear-gradient(#f7f7f7, #f7f7f7); border: 4px solid #000000; width: 800px; margin: 20px 40px; padding: 10px 20px; text-align: center; box-shadow: 0 0 10px rgba(0,0,0,0.1); } #services h1 { font-size: 24px; text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5); color: #FF0000; /* Bright pink */ font-weight: bold; } #services h2 { font-size: 18px; margin-top: 10px; color: #000000; /* Black */ font-weight: normal; } #services a:link { text-decoration: none; color: #0000FF; /* Blue */ } #services a:hover { color: #FF00FF; /* Brighter pink */ } .services-list { list-style: none; padding: 0; margin: 0; } .services-list-item { background-color: #f7f7f7; border: 1px solid #000000; margin: 10px 0; padding: 5px 10px; text-align: left; width: 200px; } .services-list-item:hover { background-color: #f0f0f0; } .services-list-item a { text-decoration: none; color: #000000; } .services-list-item a:hover { color: #0000FF; }