```css /* Basic Styles */ body { font-family: Arial, sans-serif; background-color: #e0f7ff; color: #003366; text-align: center; padding: 20px; display: flex; justify-content: center; align-items: center; min-height: 100vh; } .container { max-width: 600px; padding: 20px; background-color: #ffffff; border-radius: 8px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); display: flex; flex-direction: column; align-items: center; } /* Image Styles */ .robot-image { max-width: 100%; height: auto; margin-top: 20px; } /* Text Styles */ .headline { font-size: 2.5em; margin-bottom: 10px; color: #0056b3; } .message { font-size: 1.2em; color: #003366; } /* Mobile Responsiveness */ @media (max-width: 480px) { .headline { font-size: 1.8em; } .message { font-size: 1em; } } ```
