* {
    margin: 0;
    padding: 0;
}
body {
	background-color: #E3E6E3;
}
h1#heading {
	text-align: center;
	margin-top: 45px;
	font-family: 'Shadows Into Light', cursive;
	font-size: 2.3rem;
	color: #F5F5F5;
	padding: 7px 0;
}
div#head {
	background-color: rgba(32, 35, 36, 0.9);
	position: sticky;
	top: 0;
}
div.container {
	margin: 20px auto;
	padding: 20px;
	background-color: #50C878;
	width: 80%;
	max-width: 650px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 1.5px 3px 7px 0 #808080;
}
div.input-div {
	display: inline-block;
	font-family: 'Saria', sans-serif;
}
input.inp {
	width: 200px;
	padding: 5px 10px;
	margin: 10px;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	border-radius: 50px;
	border: none;
	outline: none;
	box-shadow: inset 1px 1px 10px 0 #808080;
	font-family: 'Saira', sans-serif;
}
input.inp:focus, input.inp:hover {
	background-color: #E5E4E2;
}
label.input {
	font-size: 20px;
	font-family: 'Comfortaa', cursive;
}
footer {
	width: 100%;
	background-color: #4a4a4a;
	text-align: center;
	padding: 15px 0 1px 0;
	margin: 0;
	font-family: 'Poppins', sans-serif;
}
div.icons{
	margin-top: 8px;
	margin-bottom: 10px;
}
footer i {
	font-size: 35px;
	padding: 6px;
}
footer p {
	color: #fff;
	margin: 6px 0;
}
footer p#contact {
	font-size: 18px;
}
div.icons a {
	text-decoration: none;
}
i.fa-facebook {
	color: #1877F2;
}
i.fa-instagram {
	background-image: linear-gradient(to bottom right, #8a3ab9, #e95950, #bc2a8d, #fccc63, #fbad50, #cd486b, #4c68d7); 
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
}
i.fa-discord {
	color: #5865F2;
}
i.fa-pinterest {
	color: #c00;
}
i.fa-github {
	color: #fff;
}
i.fa-envelope {
	color: #FBBC05;
}
footer p#bottom {
	font-size: 15px;
	border-top: 1px solid gray;
	padding-top: 2.5px;
	font-weight: lighter;
}
div#arrow {
	background-color: #191970;
	height: 50px;
	width: 50px;
	text-align: center;
	padding: 5px;
	border-radius: 50%;
	position: fixed;
	bottom: 20px;
	right: 20px;
	cursor: pointer;
	transition: 1s liner ease in;
	display: none;
}
div#arrow:hover {
	background-color: #1974D2;
}
i.fa-arrow-up {
	font-size: 40px;
	color: #fff;
	line-height: 50px;
}
div.preloader {
	width: 100%;
	height: 100vh;
	align-items: center;
	justify-content: center;
	display: flex;
	background-color: #576574;
}
div.loading {
	width: 200px;
	height: 200px;
	position: relative;
	border-radius: 50%;
	border-top: 10px solid #ff6b6b;
	animation: round 2s linear infinite;
}
@keyframes round {
	to {
		transform: rotate(360deg);
	}
}
div.loading::after, div.loading::before {
	content: "";
	top: -10px;
	left: 0;
	width: 200px;
	height: 200px;
	position: absolute;
	border-radius: 50%;
}
div.loading::after {
	transform: rotate(120deg);
	border-top: 10px solid #feca57;
}
div.loading::before {
	transform: rotate(240deg);
	border-top: 10px solid #48dbfb;
}
div.loading span#load {
	position: absolute;
	color: #fff;
	width: 200px;
	height: 200px;
	text-align: center;
	line-height: 200px;
	font-size: 22px;
	font-family: 'Comfortaa', cursive;
	animation: text 2s linear infinite;
}
@keyframes text {
	to {
		transform: rotate(-360deg);
	}
}
@media(max-width: 633px) {
	div.input-div {
		display: block;
	}
}