Welcome to my Website!

This is a paragraph! Here's how you make a link: Neocities.

Here's how you can make bold and italic text.

Here's how you can add an image:

Site hosted by Neocities

Here's how to make a list:

To learn more HTML/CSS, check out these tutorials!

Hey! How are you?
I am doing great, thanks!
``` ### CSS Code ```css .chat-container { display: flex; flex-direction: column; align-items: flex-start; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; padding: 20px; background: #ffffff; max-width: 300px; margin: auto; } .message { max-width: 75%; padding: 10px 14px; border-radius: 18px; margin-bottom: 8px; font-size: 14px; line-height: 1.4; word-wrap: break-word; } /* Received Message (Gray) */ .message.received { background: #e9e9eb; color: #000000; align-self: flex-start; border-bottom-left-radius: 4px; } /* Sent Message (iOS Blue) */ .message.sent { background: #007aff; color: #ffffff; align-self: flex-end; border-bottom-right-radius: 4px; } ```