@font-face {
	font-family: 'Clouds';
	src: url('fonts/Clouds.woff2') format('woff2'),
		url('fonts/Clouds.woff') format('woff'),
		url('fonts/Clouds.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

body {
	margin: 0;
	padding: 0;
	font-family: Clouds;
	background-color: #e63439;
	color: #ffffff;
	text-align: center;
	min-height: 100vh;
	/* Changed to min-height to allow scrolling */
	display: flex;
	flex-direction: column;
	/* Makes layout stack elements vertically */
	justify-content: flex-start;
	/* Aligns items to the top */
	align-items: center;
}

.container {
	max-width: 1000px;
	width: 90%;
	/* Ensures it scales well on smaller screens */
	padding: 20px;
}

.logo {
	max-width: 150px;
	margin-bottom: 20px;
}

a {
	color: #000000;
	/* Yellow color for links */
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* Style the toggle label */
label {
	display: block;
	cursor: pointer;
	color: #000000;
	text-decoration: underline;
	margin-top: 10px;
}

/* Hidden by default */
.hidden-content {
	display: none;
	margin-top: 10px;
	padding: 10px;
	background-color: #000000;
	border: 1px solid #ddd;
	max-width: 90%;
	/* Prevents content overflow on smaller screens */
	margin: 0 auto;
	/* Centers the content */
}

/* When checkbox is checked, show the content */
.show-content:checked+label+.content {
	display: block;
}

.custom-font {
	font-family: Arial, sans-serif;
}

/* Add a media query to handle very small screens */
@media (max-width: 600px) {
	.hidden-content {
		padding: 5px;
		/* Less padding on smaller screens */
	}

	.logo {
		max-width: 100px;
		/* Smaller logo for smaller screens */
	}

	body {
		padding: 10px;
		/* Add some padding to prevent content from touching the screen edges */
	}
}