<style>@font-face {
	font-family: 'Fibberish';
	src: url('fibberish.woff') format('woff'), url('fibberish.ttf') format('truetype');
}

@font-face {
	font-family: 'Pixel';
	src: url('pixel_maz.woff') format('woff'), url('pixel_maz.ttf') format('truetype');
}

@font-face {
	font-family: 'MesseDuesseldorf';
	src: url('MesseDuesseldorf.woff') format('woff'), url('MesseDuesseldorf.ttf') format('truetype');
}

@font-face {
	font-family: 'PixelCode';
	src: url('PixelCode.woff2') format('woff'), url('PixelCode.ttf') format('truetype');
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	font-size: 100%;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

body {
	background-color: #fff0cf;
	color: #8c4a44;
	font-family: 'Pixel', sans-serif;
	padding-top: 50px;
}

body::after {
	content: '';
	display: block;
	height: 50px;
}

img {
	max-width: 100%;
	height: auto;
}

::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px #ffcf9c;
	border-radius: 5px;
}

::-webkit-scrollbar-thumb {
	border: 2px solid #fff0cf;
	background: #8c4a44;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background: #846969;
}

#logo-floating {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 999;
	width: 100%;
	min-width: 60%;
	text-align: center;
}

#logo-floating img {
	max-width: 800px;
	width: 90%;
	height: auto;
}

#pagewidth {
	background-color: #FFCF9C;
	width: 90%;
	max-width: 900px;
	margin: 400px auto 50px;
	padding: 25px;
	border-radius: 10px;
	text-align: left;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

#main-container {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-grow: 1;
	width: 100%;
}

#content {
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
}

#content img {
	margin: 5px 0;
}

h2 {
	font-family: 'Fibberish', sans-serif;
	font-size: 1.8em;
	margin: 10px 0;
	color: #8c4a44;
	text-align: center;
}

h3 {
	font-family: 'Fibberish', sans-serif;
	font-size: 1.2em;
	color: #8c4a44;
	text-align: center;
}

p {
	color: #8c4a44;
	font-family: 'Pixel', sans-serif;
	font-size: 1.6em;
	margin: 10px 0;
	text-align: center;
}

a {
	color: #8c4a44;
	text-decoration: underline;
	font-family: 'Pixel', sans-serif;
	font-size: 1.0em;
}

a:hover {
	color: #846969;
	text-decoration: underline;
}

marquee {
	background-color: #f1a76e;
	color: #fff0cf;
	padding: 2px;
	font-size: 1.8em;
	/* Matches H2 size */
	border: 2px solid #fff0cf;
	border-radius: 5px;
}

.nav-link {
	font-family: 'MesseDuesseldorf', sans-serif;
	font-size: 1.4em;
	/* Consistent size for navigation */
	margin: 0 5px;
	display: inline-block;
}

.info-box {
	background-color: #f1a76e;
	border: 2px solid #fff0cf;
	border-radius: 5px;
	padding: 10px;
	margin: 15px auto;
	width: 95%;
	max-width: 450px;
	text-align: center;
}

.babyz-card {
	background-color: #f1a76e;
	border: 2px solid #fff0cf;
	border-radius: 5px;
	padding: 10px;
	margin: 15px auto;
	width: 80%;
	text-align: center;
	font-size: 1.2em;
}

.babyz-card .bcrs-status {
	margin: 10px;
	padding: 10px;
	border-top: 2px dashed #fff0cf;
	border-bottom: 2px dashed #fff0cf;
}

ul,
li {
	color: #8c4a44;
	font-family: 'Pixel', sans-serif;
	font-size: 1.2em;
	text-align: left;
}

.nestlings-list {
	list-style: none;
	padding-left: 0;
	display: inline-block;
	text-align: left;
	padding: 5px;
}

.nestlings-list li {
	position: relative;
	padding-left: 1em;
	text-align: left;
}

.nestlings-list li::before {
	content: "♥";
	position: absolute;
	left: 0;
	color: #8c4a44;
	font-size: 0.6em;
	line-height: 1;
}

#footer {
	clear: both;
	padding: 10px;
	margin-top: 20px;
	text-align: center;
	font-size: 1.2em;
	color: #8c4a44;
	border-top: 2px dashed #846969;
}

#footer p {
	font-family: 'Pixel', sans-serif;
	font-size: 1em;
	margin: 5px 0;
}

#footer a {
	font-size: 1em;
}

.toybox-content {
	display: none;
	margin-top: 5px;
}

.zoom-img img {
	transition: all .3s ease;
}

.zoom-img img:hover {
	transform: scale(2);
}

.copypasta-section {
	max-width: 90%;
	margin: 1rem auto;
	text-align: center;
}

.copypasta-object {
	background-color: #fff0cf;
	border: 2px dashed #8c4a44;
	border-radius: 5px;
	margin: 5px auto;
	padding: 5px;
	width: 100%;
	height: 200px;
	font-family: 'PixelCode', monospace;
	font-size: 0.9em;
	text-align: left;
	overflow: auto;
	white-space: pre-wrap;
}

.copypasta-controls {
	margin-top: 0.5rem;
	text-align: center;
}

.copypasta-button,
.copypasta-controls button {
	background-color: #fff0cf;
	border: 2px solid #8c4a44;
	margin: 5px 5px 5px 0;
	padding: 5px 10px;
	border-radius: 5px;
	cursor: pointer;
	font-family: 'MesseDuesseldorf', sans-serif;
	font-size: 0.8em;
	color: #8c4a44;
}

.copypasta-button:hover,
.copypasta-controls button:hover {
	background-color: #FFDE9C;
}

@media screen and (max-width: 768px) {
	body {
		padding-top: 10px;
	}

	#logo-floating {
		position: static;
		transform: none;
		margin-bottom: 10px;
	}

	#pagewidth {
		width: 95%;
		margin: 10px auto;
	}

	p,
	.text-content {
		font-size: 1em;
	}
}