 html, body {
	height: 100%;
	margin: 0; /* Remove default margin */
	margin-top: 3.5em;
	font-family: Onest;
	background-color: #0e0e0c;
	color: #FFF;
}

html:has(body.bodystuck), body.bodystuck {
	overflow: hidden;
	margin-top: 0em;
}


.cover-photo-container {
	background-color: #0e0e0c;
	height: 100vh; /* Sets height to 100% of the viewport height */
	width: 100vw; /* Sets width to 100% of the viewport width */

	/* Optional: Styles for content over the image */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white; /* Text color */
	/*text-align: center;*/
	padding: 20px;
	box-sizing: border-box; /* Include padding in width/height calculations */
}

@media (min-width: 768px) {
	.cover-photo-container {
		background-image: url(/assets/images/cover-photo-website.png); /* Replace with your image path */
		background-position: top left; /* top left */
		background-size: cover; /* Crucial for responsiveness, scales to cover the area */
		background-position: center center; /* Centers the image */
		background-repeat: no-repeat; /* Prevents image repetition */
		background-attachment: fixed; /* Optional: Keeps image fixed during scroll */
	}
}

.nav-link {
	text-transform: uppercase;
	font-size: 0.75em;
}

.nav-link.active {
	color: #f8bb23 !important;
}

.page-title, .home-header {
	font-family: "Pridi";
	font-weight: 400;

}

.page-title{
	font-size: 2em;
	color: #f8bb23;
}

.home-header {
	font-size: 2.5em;
}


.container {
	width: 50%; /* The square will be 50% of its parent's width */
	margin: auto; /* Center the container for demo */
}

.square {
	aspect-ratio: 1 / 1; /* This ensures the height always matches the width */
	width: 100%;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
}

.resume-sq.active {
	background-color: #f8bb23!important;
}

.resume-sq.active .square-content i {
	color: #0C0C0E!important;
}

.skill-title {
	font-family: "Pridi";
	color: #f8bb23;
	font-weight: 400;
	font-size: 1.1em;
}
