.theme-machine {
	--steel: #293640;
	--paper: #EDD9C1;
	--brand: #FFA843;

	--color-bg: var(--steel);
	--color-text: var(--paper);
	--color-accent: var(--brand);
}

/* Body-Styling innerhalb des Themes */
.theme-machine body {
	overflow: hidden;
	background: #F5EFE9;
	padding-inline: 5rem;
	height: 100vh;
}

.theme-machine .page-frame {
	height: 100%;
    overflow-y: auto; 
	border-radius: 6px;
	box-shadow:
		/* Drop Shadow */
		0 10px 50px rgba(0, 0, 0, 0.6),
		0 30px 90px rgba(0, 0, 0, 0.3);
}


.theme-machine body::before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: calc(50% - var(--frame-width) / 2 + 4rem);
    width: 1px;
    background: var(--color-accent);
    opacity: .35;
    pointer-events: none;
    z-index: 0;
}

/* Header-Centering */
.theme-machine .site-header .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

/* Große Überschrift */
.theme-machine .site-title {
	font-size: 5rem;
}

/* Uppercase-Regeln */
.theme-machine .site-title,
.theme-machine .footer-title,
.theme-machine .footer-nav a {
	text-transform: uppercase;
}