@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@800&display=swap");
* {
	scroll-behavior: smooth;
}
body {
	background: #f7f9fe;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

nav {
	scroll-behavior: smooth;
	justify-content: center;
	background-color: #131313;
	width: 100%;
	height: 100px;
	padding: 5px;
}

nav i {
	margin-top: 6px;
	color: #e6e5de;
	display: inline;
}

nav #logo {
	float: left;
	text-transform: uppercase;
	font-weight: 700;
}

nav a {
	color: #e6e5de;
	text-decoration: none;
}

nav a:last-child {
	padding-right: 30px;
}
nav #left {
	margin-left: 300px;
}
nav ul {
	display: flex;
	list-style: none;
	flex-direction: row;
	justify-content: space-around;
	font-size: 28px;
}

nav a:hover {
	color: #3d424a;
}
