h1 {
    text-align: center;
    color: red;
    text-shadow: 2px 2px 2px black;
    font-size: 100px;
}

img {
    width: 300px;
}

h1 {
    font-size: 80px;
}


/* When the viewport is less than 600px, reduce our img width to 100px and make our h1 font-size 50px */

/* When the viewport is less than 300px, hide our img and make our h1 font-size 30px
hmmm...we hid the image but it's still taking up space.  I'm ABSOLUTEly sure you can fix that.
*/

/* Here's an interesting one...let's change our browser settings - appreance to dark */
@media (prefers-color-scheme: dark) {
    body {
        background-color: black;
        color: white;
    }
}