@charset "utf-8";
/* CSS Document */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #333;
	color: #fff;
	padding:10px;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	display:none;
}

.nav-links {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 40%;
	margin-left:auto;
	margin-right:auto;
}

.nav-links li {
	list-style: none;
}

.nav-links a {
	color: #fff;
	text-decoration: none;
	padding: 10px;
}

.burger {
	display: none;
	cursor: pointer;
}

.burger div {
	width: 25px;
	height: 3px;
	background-color: #fff;
	margin: 5px;
}

@media screen and (max-width: 500px) {
	.nav-links {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-left:auto;
	margin-right:auto;
	}
}


