﻿:root {
	--background: #fdf6e3;
	--background-highlights: #eee8d5;
	--text: #657b83;
	--link: #268bd2;
	--link-visited: #6c71c4;
	--link-active: #b58900;
}
@media (prefers-color-scheme: dark) {
:root {
	--background: #002b36;
	--background-highlights: #073642;
	--text: #839496;
}
}
body {
	max-width: 621px;
	margin: 0 auto;
	padding: 1rem 2rem;
	background-color: var(--background);
	color: var(--text);
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
img {
	max-width: 100%;
}
a {
	color: var(--link);
}
a:visited {
	color: var(--link-visited);
}
a:active {
	color: var(--link-active);
}
#statuscafe {
	padding: 1rem;
	background-color: var(--background-highlights);
}
#statuscafe-username {
	margin-bottom: .5rem;
}
#statuscafe:has(#statuscafe-content:empty) {
    display: none;
}
