#navbar {
	display: flex;
}

.Navbar {
	padding: 20px 0;
	backdrop-filter: blur(20px);
	position: sticky;
	top: 0;
	z-index: 2;
	text-align: right;
	background-color: rgba(45, 55, 72, 0.6);
}

.Navbar a {
	text-decoration: none;
}

.Navbar__Link {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	padding: 12px 15px;
	border-radius: 8px;
	color: #82c6fb;
	cursor: pointer;
	transition: background 0.2s ease;
	text-decoration: none;
}

.Navbar__Link:hover {
	background: rgba(130, 198, 251, 0.12);
	color: #82c6fb;
}

.Navbar__OptionIcon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	filter: invert(65%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
}

.Navbar__OptionText {
	font-size: 0.95rem;
	vertical-align: middle;
	line-height: 1;
	font-weight: 400;
	display: none;
}

@media screen and (min-width: 768px) {
	.Navbar__OptionText {
		display: block;
	}
}

@media screen and (max-width: 768px) {
	.Navbar {
		text-align: center;
	}

	.Navbar__Link {
		display: flex;
		text-align: center;
		margin: 0 auto;
	}
}
