@font-face {
    font-family: 'MyCustomFont';
    src: url('assets/fonts/Akt-Medium.ttf') format('ttf'),
         url('assets/fonts/Parkinsans-Medium.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.header {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #333;
	padding: 1rem;
	z-index: 1000;
}

.nav-bar {
	display: flex;
	justify-content: space-around;
	max-width: 600px;
	margin: 0 auto;
}

.nav-bar a {
	color: white;
	text-decoration: none;
	padding: 0.5rem 1rem;
	cursor: pointer;
}

.nav-bar a:hover {
	background-color: #555;
}

.content-container {
	margin-top: 150px;
	padding: 20px;
	min-height: 100vh;
}

.content {
	display: none;
}

.content.active {
	display: block;
}

body {
    font-family: 'Akt-Medium', sans-serif;
}

h1 {
	font-family: 'Parkinsans-Medium', sans-serif;
	text-align: left;
	color: #2ead4e;
	padding-left: 22px;
}

ol {
	padding-left: 40px;
}

.masterpiece-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(20px, 2fr));
	gap: 15px;
	padding: 20px 0;
}

.masterpiece-example {
	width: 100%;
	cursor: pointer;
}

.masterpiece-example img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 5px;
	transition: transform 0.3s;
}

.masterpiece-example img:hover {
	transform: scale(1.2);
}

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
	gap: 15px;
	padding: 20px 0;
}

.gallery-item {
	width: 100%;
	cursor: pointer;
}

.gallery-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 5px;
	transition: transform 0.3s;
}

.gallery-item img:hover {
	transform: scale(1.1);
}

.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 2000;
	justify-content: center;
	align-items: center;
}

.lightbox img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 5px;
}

.close-btn {
	position: absolute;
	top: 20px;
	right: 30px;
	color: white;
	font-size: 40px;
	cursor: pointer;
}


footer {
	background-color: #666;
	color: #333;
	text-align: center;
}