/*
Theme Name: Rekentool Blank
Theme URI: https://example.com/
Author: Rekentool
Author URI: https://example.com/
Description: Super simple blank WordPress theme (no extra features).
Version: 0.1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rekentool-blank
Tags: blank, minimal
*/

/* Minimal base styling. Keep this theme boring by default. */
html {
	box-sizing: border-box;
}

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

body {
	margin: 0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	line-height: 1.5;
	color: #111;
	background: #fff;
}

.site-header,
.site-footer {
	padding: 1rem;
}

.site-header a {
	color: inherit;
	text-decoration: none;
	font-weight: 600;
}

