* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body { 
	font-family: "Poppins", sans-serif;
	background: #d8d8f4;
	color: rgb(0, 0, 0);
}

nav {
	width: 100%;
	padding: 1rem 5%;
	background: #fefeff5f;
	border-bottom: 1px solid #d8d8f4;
	backdrop-filter: blur(50px);

	display: flex;
	align-items: center;
	justify-content: flex-end;
}

header {
	position: sticky;
	top: 0;
	display: block;
}

.logo {
	font-size: 2rem;
	font-weight: 700;
	color: #222496;
	letter-spacing: 1px;
	margin-right: auto;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 2rem;
	margin-right: 30px;
}

.nav-links li a {
	position: relative;
	font-size: 1.2rem;
	font-weight: 550;
	text-decoration: none;
	color: #222496;
	transition: 0.3s;
}

.nav-links li a:hover {
	color: #3b3da5;
	text-shadow: 0 0 10px #3b3da5;
}

.btns {
	display: flex;
}

.btn { 
	padding: 0.5rem 1.5rem;
	border-radius: 30px;
	font-weight: 600;
	font-size: 1rem;
	background: #222496;
	color: #ece5f0;
	box-shadow: 0 0 5px #222496;
	border: none;
	cursor: pointer;
	transition: 0.3s;
}

.btn:hover {
	background: #3b3da5;
	box-shadow: 0 0 15px #3b3da5;
}


footer {
	background: #d8d8f4;
	min-height: 300px;
}

.logob {
	height: 50vh;
}