@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	background-color: #161a1e;
}
li, a, button{
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #edf0f1;
	text-decoration: none;
}
header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 10%;
}
.logo{
	cursor: pointer;
}
.nav_links{
	list-style: none;
}
.nav_links li{
	display: inline-block;
	padding: 0px 20px;
}
.nav_links li a{
	transition: all 0.3s ease 0s;
}
.nav_links li a:hover{
	color: #0088a9;
}
button{
	padding: 9px 25px;
	background-color: rgba(0, 136, 169, 1);
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transform: all 0.3s ease 0s;
}
button:hover{
	background-color: rgba(0, 136, 169, 0.8);
}
#demo{
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 350%;
	color: #edf0f1;
	text-decoration: none;
	text-align: center;
	border-radius: 5px;
	background: inherit;
	
}
#demo:hover{
	background: dimgrey;
	transition-duration: 1s;
	transform-style: ease-in-out;
	transition-property: background;

}
.countdown{
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	text-align: center;
	
}
.countdown h1{
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 350%;
	color: #edf0f1;
	text-decoration: none;
	margin-bottom: 5%;

}
.countdown h2{
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 350%;
	color: #edf0f1;
	text-decoration: none;
	margin-bottom: 5%;

}