/*Copyright by Haxtar Soliterax 2015 - 2022*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:500');

@keyframes soldan{
	0%{
		top: -50px;
	}

	10%{
		top: -45px;
	}

	20%{
		top: -40px;
	}

	30%{
		top: -35px;
	}

	40%{
		top: -30px;
	}

	50%{
		top: -25px;
	}

	60%{
		top: -20px;
	}

	70%{
		top: -15px;
	}

	80%{
		top: -10px;
	}

	90%{
		top: -5px;
	}

	100%{
		top: 0px;
	}
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	background-color: #24252A;
}

header li,a {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #edf0f1;
	text-decoration: none;
	background-color: #1c1c1c;
	padding: 0px 4px;
}

header {
	top: 0px;
	right: 0px;
	left: 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 30px;
	background-color: #1c1c1c;
	border-top-right-radius: 40px;
	border-top-left-radius: 40px;
	position: relative;
	animation-name: soldan;
	animation-duration: 1s;
	margin: 20px 60px 20px 60px;
	
}



.logo {
	cursor: pointer;
	width: 30px;
	height: 30px;
	background-color: #1c1c1c;
}

.logo_text{
	cursor: pointer;
	display: inline-block;
	font-size: 35px;
	border-style: none;
	top: 0px;
	padding: 0px 0px 0px 10px;
	background-color: #1c1c1c;
}


.nav__links {
	list-style: none;
	background-color: #1c1c1c;
}

.nav__links li {
	display:  inline-block;
	padding: 0px 20px;
}

.nav__links li a {
	transition: all 0.3s ease 0s;
}

.nav__links li a:hover {
	border-style: solid;
	border-width: 0px 0px 5px 0px;
	border-radius: 10px;
	border-bottom-color: #0088a9;
	color:  #0088a9;
}

.Login_Button {
	background-color: transparent;
	padding: 2px 10px;
	margin-right: 10px;
}