css /* styles.css */ body { background-color: #f7d8d7; /* Bright and cheerful pastel pink */ font-family: "Comic Sans", sans-serif; margin: 0; padding: 0; width: 100%; } h1, h2, h3, h4, h5, h6 { font-family: "Arial", sans-serif; font-weight: bold; text-align: center; text-shadow: 0 0 10px black; margin: 20px 0; padding: 0; } h1 { color: #f7dc6d; /* Bright yellow */ border-bottom: 4px solid black; } h2 { color: #f2a0d7; /* Pastel purple */ border-bottom: 4px solid black; } h3, h4, h5, h6 { color: #f7d8d7; /* Bright and cheerful pastel pink */ border-bottom: 2px solid black; font-size: 1.1em; } p { font-family: "Comic Sans", sans-serif; line-height: 1.2em; margin: 20px 0; padding: 10px 0; text-align: center; color: #f2a0d7; /* Pastel purple */ border-bottom: 2px solid black; } a { color: #f7dc6d; /* Bright yellow */ text-decoration: none; border-bottom: 2px solid black; text-shadow: 0 0 5px black; } a:hover { color: #f7b8d7; /* Pastel pink with a hint of red */ background-color: #f2a0d7; border-bottom: 4px solid black; text-shadow: 0 0 15px black; }