* {
	font-family: sans-serif;
	color: #fff;
}

body {
    background: #071623;
	margin: 0px;
}

.navbar {
	font-size: 2em;
	font-weight: bold;
}

@media screen and (orientation: portrait) {
	.navbar {
		font-size: 2em;
		font-weight: bold;
		color: #E3C4E8;
	}
}

.navbar ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	width: auto;
	align-content: flex-end;
	overflow: hidden;
	background-color: #263845;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	user-select: none;
	min-width: 500px;
}

.navbar li a {
	display: block;
	color: white;
	text-align: center;
	padding: 14px 24px;
	text-decoration: none;
}

.not_active {
	transition: background-color 0.2s ease;
}

.navbar .active {
	background-color: #04AA6D; 
	transition: background-color 0.2s ease;
}

.not_active:hover {
  background-color: #14242F;
}

.active:hover {
  background-color: #04AA6D;
}

p {
	text-align: center;
	line-height: 2;
	font-size: 1.5rem;
}