/*
Theme Name:        The Uvie
Theme URI:         https://theuvie.com
Author:            The Uvie
Author URI:        https://theuvie.com
Description:       A fully custom theme for theuvie.com -- homepage, portfolio, services, and a full client portal system, built without a page builder. Every page is hand-coded PHP/CSS/JS, monotone black-and-white brand throughout.
Version:           1.0000
Requires at least: 5.9
Requires PHP:      7.4
License:           GPL v2 or later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       theuvie

---------------------------------------------------------------
This file exists mainly so WordPress recognizes this as a theme --
nearly all of the actual visual design lives inline inside each page's
own render function (in functions.php), scoped under a .uvw-root
wrapper class. That was a deliberate choice from early in this
project: every page is fully self-contained, so nothing here needs to
fight theme-level CSS for control.

This stylesheet only handles the handful of things that sit *outside*
that per-page scoping: a dark base background (so there's never a
flash of white before a page's own background paints in), removing
default browser margins, and box-sizing.
---------------------------------------------------------------
*/

html, body {
    margin: 0;
    padding: 0;
    background: #0a0a09;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

img, svg {
    max-width: 100%;
}

a {
    color: inherit;
}
