/*
Theme Name: Hello World Only
Theme URI: https://example.com/
Author: Mark
Author URI: https://example.com/
Description: A minimal single-purpose theme. Every front-end request, regardless of URL, simply displays "Hello World" and nothing else.
Version: 1.0
Requires at least: 5.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hello-world-only
*/

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #111111;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    margin: 0;
}
