nav {
	display: flex;
	justify-content: space-between;
	padding: 50px;
	position: fixed;
	z-index: 99;
	align-items: flex-end;
}

nav ul {
	display: flex;
	list-style: none;
	margin-left: 10%;
	width: 1000px;
	font-family: 'Barlow Bold', sans-serif;
}

nav ul li {
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 900;
	cursor: pointer;
	padding: 0 20px;
	border-right: 2px solid #fff;
}

nav ul li:last-child {
	border: none;
}
