/*

    Coded by itspolar.dev for shrake.dev

*/

body {
	background: #121212;
	overflow: hidden;
}

.content {
	z-index: 1;
}

.bg {
	background-image: linear-gradient(rgba(18, 18, 18, 0.867) 75%, rgb(18, 18, 18) 100%),
		url("../imgs/bg.jpg");
	z-index: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100%;
	width: 100%;
	position: absolute;
}

.centered {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.wave-animation {
	animation-name: wave-animation;
	animation-duration: 2.5s;
	animation-iteration-count: infinite;
	transform-origin: 70% 70%;
	display: inline-block;
}

@keyframes wave-animation {
	0% {
		transform: rotate(0deg);
	}
	10% {
		transform: rotate(14deg);
	}
	20% {
		transform: rotate(-8deg);
	}
	30% {
		transform: rotate(14deg);
	}
	40% {
		transform: rotate(-4deg);
	}
	50% {
		transform: rotate(10deg);
	}
	60% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

a {
	display: inline-block;
	color: white;
	transition: 0.1s linear;
	text-decoration: none;
}
a:hover {
	color: lightgray;
	text-shadow: rgba(255, 255, 255, 0.25) 0px 0px 10px;
}

.align-right {
	text-align: right;
}

.margin-auto {
	display: flex;
	margin: auto;
}

.online {
	color: #42b57f;
	filter: drop-shadow(0px 0px 7px #42b57f65);
}

.dnd {
	color: #f14746;
	filter: drop-shadow(0 0 7px #f1474665);
}

.idle {
	color: #fba71a;
	filter: drop-shadow(0 0 7px #fba71a65);
}

.offline {
	color: #b5b5b5;
	filter: drop-shadow(0 0 7px #ffffff65);
}

footer {
	display: flex;
	position: absolute;
	bottom: 15px;
	width: 100%;
	left: 0;
}

nav {
	display: flex;
	position: absolute;
	top: 15px;
	width: 100%;
	left: 0;
}

footer img {
	border-radius: 5px;
}

.hidden {
	opacity: 0%;
}

.padding-left {
	padding-left: 15px;
}

.dancing {
	opacity: 50%;
	transition: 0.2s linear;
}

.dancing:hover {
	opacity: 100%;
}

.padding-footer {
	padding-left: 5px;
}

p {
	padding: 0;
	margin: 0;
}

@media only screen and (max-width: 600px) {
	.center {
		margin-left: 15%;
		margin-top: 15px;
	}
	footer {
		position: absolute;
		bottom: 15px;
		left: 15px;
	}
	.responsive {
		text-align: center;
	}
}

.font-size {
	font-size: 25px;
}

.w-100 {
	width: 100%;
}

.icons i {
	font-size: 20px;
	color: white;
	padding-left: 5px;
	padding-right: 5px;
}

i a {
	color: white;
	text-decoration: none;
}
