The Tribute page - how to make it look good on mobile? ( respnsive ?)

Hello everyone,

I’m Amy. I just start to make my first responsive web design project, the tribute page.

As you can see, it looks really weird on mobile. No idea how to fix it.

Hopefully, someone could point me in the right direction?

Thanks :vulcan_salute:t4:

Use Media queries. Set the device width specific to the device(mobile,tablet etc) and set the CSS attribute values.

Ex:@media (max-width: 500px) { /* for screen width 500px and smaller */
h1 {
width: 20px;
}

}
This will set the width of h1 element to 20px in devices whose screen width is less than 500 pixels