/* Banner styles: center title and navigation */
.header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 24px 12px;
	color: #fff;
	background-image: url("img/Hokusai_Dragon.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 15px;
	margin-right: 5%;
	margin-left: 5%;
}

.logo {
	font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	font-size: 2.1rem;
	font-weight: 700;
	letter-spacing: 1px;
	color: #ffd166;
	text-decoration: none;
	margin-bottom: 12px;
}

.header-right {
	display: flex;
	gap: 18px;
	align-items: center;
    background: green;
    border-radius: 10px;
	justify-content: center;
}

.header-right a {
	color: #ffffffcc;
	text-decoration: none;
	padding: 8px 12px;
	border-radius: 6px;
	font-weight: 600;
}

.header-right a:hover,
.header-right a.active {
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
}

