header {
	position: sticky;
	top: 0;
	display: flex;
	padding: 0.5em 1em;
	background: rgb(17, 15, 15);
	color: white;
	justify-content: space-between;
	align-items: center;
	z-index: 10;
}

nav {
	display: flex;
	position: relative;
}

.circle {
	min-width: 1em;
	min-height: 1em;
	width: 3em;
	height: 3em;
	border-radius: 2em;
	border: 0.2em solid white;
	background-image: linear-gradient(orange, white, green);
}

.myState {
	padding: calc(1em - 10px) 20px;
	font-family: Roboto;
	font-weight: bolder;
	font-size: 1.8rem;
	color: transparent;
	background-image: radial-gradient(
		rgb(254, 174, 27),
		rgb(252, 157, 252),
		rgb(86, 221, 86)
	);
	background-clip: text;
	-webkit-background-clip: text;
}

.list li {
	display: inline-block;
	margin: 0 1rem;
}

.list li a {
	color: white;
	font-weight: 700;
	text-decoration: none;
}

.list li a:hover {
	color: orange;
	text-decoration: underline;
}

.menu {
	background: transparent;
	border: 0;
	color: white;
	cursor: pointer;
	display: none;
}

@media screen and (max-width: 700px) {
	.list {
		display: none;
	}

	.menu {
		display: inline-block;
	}
}
