html, body
{
	margin:0;
	padding:0;
	min-height: 100vh;
}
body
{
	background: url('../img/baner.png') no-repeat fixed top center;
	background-size: cover;
}
nav
{
	background-color: #aaa;
	opacity: .9;
}
main 
{
	min-height: 81.6vh;
	padding: 80px 0;
}
footer
{
	min-height: 50px;
	text-align: center;
	background-color: #aaa;
	opacity: .6;
	font-size: 17px;
	padding: 13px 0;
	position: relative;
	bottom: 0;
	width: 100%;
}
.navbar
{
	position: sticky;
	top: 0;
	z-index: 2;
}
.article
{
	background-color: rgba(0, 0, 0, 0.7);
	border-radius: 40px;
	color: white;
	text-align: center;
	padding: 10px;
}
.button
{
	width: 80%;
	text-align: cetner;
	height: 45px;
	background-color: #25af23;
	padding: 10px;
	border-radius: 15px;
	font-size: 15px;
}
.button:hover
{
	cursor: pointer;
}
#mainmenu
{
	justify-content: right;
	position: relative;
	right: 0;
}
.nav-item
{
	margin: 0 10px;
}
.nav-item a
{
	color: black;
}
#domena
{
	color: black;
}
#community
{
	justify-content: space-around;
}
.main
{
	margin-top: 40px;
}
.info
{
	background-color: #ddd;
	padding: 20px;
	border-radius: 10px;
}
.box
{
	display: flex;
}
.person
{
	border-radius: 15px;
	padding: 10px;
	display: flex;
	margin: 30px 0;
}
.person_left
{
	margin: 0 7px;
	text-align: center;
}
.person_left img
{
	width: 200px;
	height: 200px;
}
.person_right
{
	margin: 0 7px;
}
.person_hr
{
	width: 100%;
}
.owner
{
	border: 5px solid darkred;
}
.admin
{
	border: 5px solid red;
}
.mod
{
	border: 5px solid green;
}
.kmod
{
	border: 5px solid lime;
}
.helper
{
	border: 5px solid blue;
}
#watermark
{
	position: relative;
	right: 0;
}
#minestatus
{
	width: 100%;
}

/* RESP */



@media only screen and (max-width: 767px)
{
	.nav-item
	{
		font-size: 20px;
		margin: 5px 0;
	}
	.person
	{
		display: block;
	}
}

/* ANIMACJE */


#discord
{
	animation: discord 10s infinite;
}
#facebook
{
	animation: facebook 15s infinite;
}
#youtube
{
	animation: youtube 18s infinite;
}
@keyframes discord
{
	0%
	{
		transform: rotate(0);
	}
	85%
	{
		transform: rotate(0);
	}
	90%
	{
		transform: rotate(6deg);	
	}
	95%
	{
		transform: rotate(-6deg);
	}
	100%
	{
		transform: rotate(0);	
	}
}
@keyframes facebook
{
	0%
	{
		transform: rotate(0deg) scale(1);
	}
	40%
	{
		transform: rotate(0deg) scale(1);
	}
	50%
	{
		transform: rotate(-5deg) scale(1.01);
	}
	60%
	{
		transform: rotate(0deg) scale(1);
	}
	100%
	{
		transform: rotate(0deg) scale(1);
	}
}
@keyframes youtube
{
	0%
	{
		transform: scale(1);
	}
	78%
	{
		transform: scale(1);
	}
	80%
	{
		transform: scale(.9);
	}
	82%
	{
		transform: scale(1);
	}
	100%
	{
		transform: scale(1);
	}
}



/* PRELOADER */



#preloader
{
	background: #fff url(../img/loader.gif) no-repeat center center;
	background-size: 30%;
	height: 100vh;
	width: 100%;
	position: fixed;
	z-index: 100;
}

/* PRELOADER RESP */

@media only screen and (max-width: 1100px)
{
	#preloader
	{
		background-size: 40%;
	}
}
@media only screen and (max-width: 768px)
{
	#preloader
	{
		background-size: 60%;
	}
}
@media only screen and (max-width: 500px)
{
	#preloader
	{
		background-size: 80%;
	}
}
@media only screen and (max-width: 400px)
{
	#preloader
	{
		background-size: 110%;
	}
}


/* KLASY GLOBALNE */


.pointer
{
	cursor: pointer;
}