* {box-sizing: border-box;}
body {

	margin: 0;
	padding: 0;
	font-family: monospace;
}
.preload {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
}
.logo {
	width: 300px;
	height: 70px;
	margin: 150px auto 50px auto;
	font-size: 50px;
	text-shadow: -1px 2px 2px #000;
	text-align: center;
	color: azure;
	transition: all 0.4s ease-out;
	border-radius: 30%;
}
.logo:hover{
	cursor: pointer;
	transform: translateY(-20px);
	box-shadow: 4px 30px 16px 0px rgba(0,0,10, 0.45);
}
.loader-frame {
	width: 70px;
	height: 70px;
	margin: auto;
	position: relative;
}
.loader1, .loader2{
	position: absolute;
	border: 5px solid transparent;
	border-radius: 50%;
}
.loader1 {
	width: 70px;
	height: 70px;
	border-top: 5px solid orange;
	border-bottom: 5px solid orange;
	animation: clockwisespin 2s linear 3;
}
.loader2 {
	width: 60px;
	height: 60px;
	border-left: 5px solid white;
	border-right: 5px solid white;
	top: 5px; left: 5px;
	animation: anticlockwisespin 2s linear 3;
}

@keyframes clockwisespin {
	from{transform: rotate(0deg);}
	to {transform: rotate(360deg);}
}
@keyframes anticlockwisespin {
	from{transform: rotate(0deg);}
	to {transform: rotate(-360deg);}
}
@keyframes fadeout {
	from {opacity: 1;}
	to {opacity: 0;}
}
#particles-js {
	height: 100%;
	background: #B0C4DE;
}