body {
    margin: 0;
    padding: 20px;
    font-family: sans-serif;
}

.container {
    max-width: 800px; /* Prevents text from stretching too wide on laptops */
    margin: 0 auto;   /* Centers the content */
}

/* Specific tweaks for Phones */
@media (max-width: 600px) {
    body {
        padding: 15px; /* Less padding so we use more of the small screen */
    }
    
    h1 {
        font-size: 1.8rem; /* Shrink the title slightly so it doesn't wrap weirdly */
    }
}