@import url("core.css");

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

::selection {
	background: rgba(0, 0, 0, 0.1);
}

html {
	scrollbar-gutter: stable;
}

body {
	background: #FFFFF8;
	display: flex;
	flex-direction: column;
	font-family: "Iowan Old Style";
	gap: 2rem;
	margin: 2rem auto;
	width: min(calc(100vw - 4rem), 640px);
}

body:hover {
	border-image: url("https://gregorylimeurhen.goatcounter.com/count?p=/");
}

nav {
	display: flex;
	flex-direction: row;
	gap: 2rem;
	justify-content: center;
}

nav img {
	height: 32px;
	width: 32px;
	vertical-align: middle;
}

dl {
	display: grid;
	gap: 1rem 2rem;
	grid-template-columns: max-content auto;
}

article {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	word-wrap: break-word;
}
