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

	body {
		font-family: 'Poppins', sans-serif;
	}

	#navigation {
		width: 100%;
		height: 70px;
		left: 0px;
		top: 0px;
		background-color: rgba(197,225,228,1);
	}

	li, a{
		font-size: 16px;
		text-decoration: none;
		color: #000000;
		font-family: "Poppins";
		margin-bottom: 0px;
	}

	header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 30px 10%;
		animation: fade 2s ease-in ;
	}

	#logo a{
		font-size: 24px;
		font-weight: 700;
	}

	#logo a:hover{
		transition: all 0.3s ease 0s;
		color: white;
		text-decoration: none;
	}

	#nav_links li{
		list-style: none;
		display: inline-block;
		padding: 0px 20px;
	}

	#nav_links li a {
		transition: all 0.3s ease 0s;
	}

	#nav_links li a:hover {
		color: white;
		text-decoration: none;
	}

	#signup{
		font-family: 'Poppins', sans-serif;
		font-weight: 600;
		padding: 5px 20px;
		background-color: transparent;
	}

	#signup a:hover, #login a:hover {
		color: white;
		text-decoration: none;
	}

	#login {
		font-family: 'Poppins', sans-serif;
		font-weight: 600;
		padding: 5px 20px;
		background-color: #FFAE42;
		border-radius: 20px;
		box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	}

	#right_most {
		width: 20%;
		display: flex;
		justify-content: space-between;
	}

	#here{
  font-weight: 600;
  font-size: 20px;
}