*{
	margin:0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins',Sans-serif;
}

body{
	background:url('0 (2).gif') no-repeat;
	backdrop-filter:blur(3px);
	background-size:cover;
	background-positon: center;
	color: #ededed;
}

.header{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	padding: 20px 10%;
	background: transparent;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index:100;
}

.logo{
	font-size: 25px;
	color: #ededed;
	text-decoration: none;
	font-weight: 600;
}

.navbar a {
	font-size: 18px;
	color: #ededed;
	text-decoration: none;
	font-weight: 500;
	margin-left: 35px;
	transition: .3s;
}

.navbar a:hover,
.navbar a.active {
	color: #00abf0;
}

.home {
	height: 100vh;
	display: flex;
	align-items: center;
	padding: 0 10%;
}

.home-content {
	max-width: 600px;
}


.home-content h3{
	font-size: 32px;
	font-weight: 700;
	color:#00abf0;
}

.home-content h1{
	font-size: 56px;
	
	margin: 20px 0 40px;
	font-weight: 700;
	line-height: 1.2;
	
}

.home-content ul{
	font-size: 20px;
	
	margin: 20px 0 40px;
	font-weight: 700;
	line-height: 1.1;
	
}

section {
	text-shadow: 0px -1px 5px black;
}





