* {
	margin: 0;
	padding: 0;
	font-family: cursive, Century Gothic;

}

header {
	position: relative;
	height: 100vh;
	width: 100%;
	background: #eff4fd;
}


.page {
	max-width: 1200px;
	height: auto;
} 

.logo {
	display: inline-block;
	cursor: pointer;
}

.navbar {
	float: right;
	margin: 25px;

}

ul {
	text-transform: uppercase;
	list-style: none;

}



ul li {
	display: inline-block;
	padding: 5px 20px;
}

ul li a {
	text-decoration: none;
	font-weight: bold;

}

ul li a:hover {
	color: red;
}

.title {
	/*position: absolute;
	top: 55%;
	left: 18%;
	transform: translate(-40% , -50%);*/
	margin-left: 8%;
	margin-top: 15%;
}

.title h1 {
	font-size: 50px;
	margin-bottom: 5px;
	color: #212121;
}

span {
	color: orange;
}

.title p {
	color: #555;
	line-height: 22px;
}

.button a {
	background: #212121;
	color: #fff;
	padding: 10px 18px;
	display: inline-block;
	text-decoration: none;
	border-radius: 5px;
	margin: 30px 0;
	font-weight: bold;
	position: absolute;
	left: 8%;
	transition: 0.6s ease;

}

.button a:hover {
	color: red;
	background-color: violet;
}


.image {
	width: 45%;
	height: 80%;
	position: absolute;
	bottom: 0;
	right: 100px;

}

.image img {
	height: 80%;
	background-color: dimgrey;
	border-radius: 30% 70% 30% 70% / 30% 30% 70% 70%;
	/*float: right;*/
	position: absolute;
	left: 40%;
	/*bottom: 0;*/
	/*transform: translateX(-50%);*/
	transition: bottom 1s ,left 1s;
}

.image img:hover {
	transform: scale(1.2);
	transition: 0.6s ease;
}


/*PORTFOLIO ENDED*/

.content {
	display: none;
}

section {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: #0c1b21;
}

.loader {
	position: relative;
	width: 250px;/*250px*/
	height: 250px;
	filter: url(#gooey);
	animation:  animate 16s linear infinite;
}

.loader span {
	position: absolute;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    transform: rotate(calc(45deg * var(--i)));



}


.loader span::before {
	content: '';
	position: absolute;
	top: 0;
	left: calc(50% - 20px);
	width: 40px;
	height: 40px;
	background: linear-gradient(45deg, #c7eeff, #03a9f4);
	border-radius: 50%;
	box-shadow: 0 0 30px #00bcd4;
}

.rotate {
	animation:  animate 4s ease-in-out infinite;
	animation-delay:  calc(-0.2s * var(--j));

}

@keyframes animate
{

	 0%
	 {
	 	transform: rotate(0deg);
	 }
	 100%
	 {
	 	 transform: rotate(360deg);
	 }
}

svg {
	width: 0;
	height: 0;

}



































  