.navbar {
	background-color: white;
	width: 100%;
	margin: 0;
	/* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
	/* transition: background-color 0.3s; */
}

.navbar ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
}

/* we use this instead of li, that way we can change format for tiny devices */
.navbar div {
	display: list-item;
	margin: 0 10px;
}

.navbar a {
	text-decoration: none;
	color: rgb(58, 58, 58);
	/* font-weight: bold; */
}

