.navbar {
	display: flex;
	align-items: center;
	padding: 0.5rem 0;
	font-size: 0.8rem;
	max-width: 700px;
	margin-top:50px;
	margin-bottom: 70px;
}

.navbar li:before {
	content: none;
}

.logo {
	display: flex;
	align-items: center;
	font-size: 6rem;
	font-family: 'Playfair Display', 'Times New Roman', Times, Georgia, serif;
}

.logo {
	text-decoration: none !important;
}

.nav-container {
	margin-left: 150px;
	flex: 1;
}

.nav-menu {
	display: flex;
	justify-content: space-between;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu li {
	display: inline-block;
}

@media (max-width: 600px) {
	.navbar {
		flex-direction: column;
		align-items: center;
		padding: 0.5rem;
		max-width: 100%;
		margin-bottom: -30px;
	}
	.logo {
		font-size: 6rem;
		margin-bottom: 3rem;
		text-align: center;
	}
	.nav-container {
		margin-left: 0;
		width: 100%;
	}
	.nav-menu {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 2rem;
		width: 100%;
		justify-content: center;
		align-items: center;
	}
	.nav-menu li {
		display: inline-block;
		width: auto;
	}
}

