/*
Theme Name: Twenty Twenty Six
Theme URI: https://example.local/twentytwentysix
Author: Local
Author URI: https://example.local
Description: A single-page theme showing a centered image and quote.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: twentytwentysix
*/

:root {
	--tt6-surface: #f7fbfd;
	--tt6-ink: #0d0d0d;
	--tt6-muted: #4f565c;
	--tt6-border: #d9e2e8;
	--tt6-primary: #187aba;
}

* {
	box-sizing: border-box;
}

html {
	min-height: 100%;
}

body {
	min-height: 100vh;
	margin: 0;
	background: var(--tt6-surface);
	color: var(--tt6-ink);
	font-family: Georgia, "Times New Roman", serif;
}

.tt6-page {
	display: grid;
	min-height: 100vh;
	place-items: center;
	padding: clamp(1.5rem, 4vw, 4rem);
}

.tt6-frame {
	width: min(100%, 76rem);
	text-align: center;
}

.tt6-image {
	display: block;
	width: min(100%, 54rem);
	height: auto;
	margin: 0 auto;
	border: 1px solid #000000;
}

@media (max-width: 40rem) {
	.tt6-page {
		align-items: start;
		padding-top: 2rem;
	}
}
