header {
	position: fixed;
	z-index: 1000;
	margin: auto;
	display: flex;
	justify-content: space-around;
	align-content: center;
	align-items: center;
	width: 100vw;
	padding: 20px;
	
	background-color: rgba(131,100,232,1);
	border-bottom: solid 1px #ccc;
	transition: all 0.2s ease;
}
header .wrapper {
	margin: auto;
	display: flex;
	justify-content: space-around;
	align-content: center;
	align-items: center;
	width: 100%;
}
@media only screen and (max-width: 900px) {
	header .wrapper {
		justify-content: space-between;
	}
}
header h1 {
	color: #fff;
	white-space: nowrap;
}
header .navbar ul {
	list-style: none;
	display: flex;
	gap: 20px;
	white-space: nowrap;
}
@media only screen and (max-width: 900px) {
	header .navbar ul {
		display: none;
	}
}
header .navbar ul li a {
	padding: 8px 10px;
	border-radius: 25px;
	color: #fff;
	font-weight: bold;
	font-size: 1rem;
	transition: all 0.3s ease;
}
header .navbar ul li a:hover {
	color: #000;
}
header .navbar ul li:last-child a {
	color: #fff;
	border: solid 2px #fff;
	background-color: #d397fa;
	transition: all 0.3s ease;
}
header .navbar ul li:last-child:hover a {
	color: #000;
	border: solid 2px #000;
}