body {
	background-color: rgb(0, 0, 0); 
	display: flex;
	flex-direction: column;
}

header{
	background-color: #353434;
	border-bottom: 10px solid rgb(0, 174, 255);
}

.nav-list {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 32px;
	list-style: none;
	font-family: 'Poppins', sans-serif;
}

.nav-list li a {
	text-decoration: none;
	color: #fff;
}

main {
	background-color: white;
}