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

body {
	font-family: "Helvetica Neue", sans-serif, Arial;
	background-color: #faf5d8;
	color: #21181b;
	line-height: 1.7;
	padding: 2em;
	margin: 0;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

main {
	padding: 0 0.3em;
}

p {
	padding: 0 0.5em;
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	max-width: 90%;
	/*white-space: pre;*/
}

h1, h2, h3, h4, h5 {
	line-height: 1.3;
	margin-bottom: 1rem;
}

a {
	color: #cd5f2a;
	text-decoration: none;
	transition: color 0.1s ease;
}

a:hover {
	color: #ff5f2a;
	text-decoration: underline;
}

header {
	padding: 1em 1em 2.5em;
	display: flex;
	align-items: center;
	gap: 36px;
}

header h1 {
	transform: scaleX(1.3) scaleY(2.7);
	transform-origin: center;
	letter-spacing: 1pxem;
	/*text-transform: uppercase;*/
	/*background: linear-gradient(90deg, #fff, #ccc);*/
	-webkit-background-clip: text;
	/*color: transparent;*/
}

header img {
	width: 120px;
	height: auto;
}

.header-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

footer {
	padding-top: 2.5em;
}

blockquote {
	font-family: serif;
	font-size: 40px;
	padding-left: 0.3em;
	/*padding-left: 1em;*/
	/*width: 80%;*/
	border-left: 2px solid #1c1c1c4a;
	border-radius: 2px;
	width: 84%;
}

.top-right-1 {
	position: fixed;
	top: 4vh;
	right: 2vw;
}

.tilt-right {
	transform: rotate(15deg);
	transform-origin: center;
}

.pop {
		
}

@keyframes rainbow {
	0% { background-position: 0% 50%; }
	100% { background-position: 200% 50%; }
}

.rainbow {
	font-weight: bold;
	background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
	background-size: 200% 100%;
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	animation: rainbow 1.4s linear infinite;
}

.max-text-width-1 {
	max-width: 270px;
	word-wrap: break-word;
}

.clickable {
	cursor: pointer;
	text-decoration: underline;
}

.anchor-center {
	transform-origin: center;
}


