body {
	background-size: cover;
	font-family: "Open Sans", Helvetica;
	margin: 0;
	padding: 0;
	background-color: #120a07;
}

html, body {
	width: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

p {
	margin: 0;
	padding: 3px;
}

.container {
	text-align: center;
}

.hero {
	position: absolute;

	top: 100px;
	left: 0;

	width: 100%;

	z-index: 5;

	text-align: center;
}

.logo {
	position: relative;

	width: 100%;

	margin: 0;
	padding: 0;

	z-index: 20;
}

.logo img {
	width: 100px;
	height: auto;

	max-width: 13vw;

	display: block;

	margin: 0 auto;

	-webkit-animation-name: logo;
	animation-name: logo;

	-webkit-animation-duration: 5s;
	animation-duration: 5s;

	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;

	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}

@-webkit-keyframes logo {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.07);
		transform: scale(1.07);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes logo {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.07);
	}
	100% {
		transform: scale(1);
	}
}




/* ========================================
   ITEMS
======================================== */

.items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-ms-flex-pack: distribute;
	justify-content: space-around;

	-ms-flex-preferred-size: 100px;
	flex-basis: 100px;

	padding: 18px 0 10px 0;
}

.item img {
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;

	margin-bottom: 7px;
}

.item img:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.img {
	width: 80%;
}

.title {
	font-family: "MyFont", sans-serif;

	text-align: center;

	color: #FFFFFF;

	margin: 10px 0 0 0;
	padding: 0;

	font-size: 24px;
}

.subtitle {
	font-family: "MyFont", sans-serif;

	text-align: center;

	color: #FFFFFF;

	margin: 5px 0 15px 0;
	padding: 0;

	font-size: 15px;
}

.title,
.subtitle {
	display: block;
}


/* ========================================
   TOP BAR
======================================== */

.top-bar {
	position: absolute;

	top: 0;
	left: 0;

	width: 100%;
	height: 100px;

	background-image: url("../img/waves.png");

	background-repeat: repeat-x;
	background-position: center;
	background-size: auto 100px;

	z-index: 10;
}


/* ========================================
   CAROUSEL
======================================== */

:root {
	--carousel-width: 3700px;
	--carousel-height: 700px;
}

.carousel {
	position: absolute;

	top: 0px;
	left: 0;

	width: 100%;
	height: var(--carousel-height);

	overflow: hidden;

	border-radius: 0;

	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);

	z-index: 2;
}


/* ========================================
   CAROUSEL TRACK
======================================== */

.carousel-track {
	display: flex;

	width: 100%;
	height: 100%;

	transition: transform 0.7s ease-in-out;
}

.carousel-slide {
	flex: 0 0 100%;

	width: 100%;
	height: 100%;
}

.carousel-slide img {
	width: 100%;
	height: 100%;

	object-fit: cover;

	display: block;
}


/* ========================================
   CAROUSEL BUTTON
======================================== */

.carousel-button {
	position: absolute;

	z-index: 30;

	left: 40%;
	bottom: 130px;

	width: 200px;
	height: 100px;

	margin: 0;
	padding: 0;

	transform: translateX(-50%);

	background-image: url("../img/wiki.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

	border: 2px solid #fff;
	border-radius: 10px;

	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);

	box-sizing: border-box;

	display: block;

	transition: transform 0.2s ease;
}

.carousel-button:hover {
	background-image: url("../img/wiki2.png");

	transform: translateX(-50%) scale(1.05);
}

.carousel-button-two {
	position: absolute;

	z-index: 30;

	left: 60%;
	bottom: 130px;

	width: 200px;
	height: 100px;

	margin: 0;
	padding: 0;

	transform: translateX(-50%);

	background-image: url("../img/store.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

	border: 2px solid #fff;
	border-radius: 10px;

	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);

	box-sizing: border-box;

	display: block;

	transition: transform 0.2s ease;
}

.carousel-button-two:hover {
	background-image: url("../img/store2.png");

	transform: translateX(-50%) scale(1.05);
}

.site-footer {
	position: absolute;

	top: calc(-4px + var(--carousel-height));

	left: 0;

	width: 100%;

	height: 140px;

	text-align: center;

	z-index: 30;
}


.carousel-button-three {
	position: relative;

	display: block;

	left: 50%;

	width: 300px;
	height: 80px;

	margin: 20px 0 0 0;

	transform: translateX(-50%);

	background-image: url("../img/discord.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

	border: 2px solid #fff;
	border-radius: 10px;

	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);

	box-sizing: border-box;

	transition: transform 0.2s ease;
}

.carousel-button-three:hover {
	background-image: url("../img/discord.png");

	transform: translateX(-50%) scale(1.05);
}


/* ========================================
   RESPONSIVE
======================================== */


@media (min-width: 600px) {

	.title {
		font-size: 24px;
	}

	.subtitle {
		font-size: 15px;
	}

	.logo img {
		width: 530px;
	}

	.img {
		width: 100%;
	}

	.items {
		padding: 30px 0 20px 0;
	}

	.extrapad {
		padding: 0 42.5px;
	}


@media (min-width: 1000px) {

	.items {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.item:not(:first-child) {
		margin-left: 90px;
	}
}


@font-face {
	font-family: "MyFont";
	src: url("../fonts/Bevan-Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

/* ========================================
   SERVER INFO / PLAYER COUNT
======================================== */

.server-info {
	position: absolute;

	z-index: 30;

	bottom: 300px;
	left: 50%;

	transform: translateX(-50%);

	text-align: center;

	color: #ffffff;

	font-family: "MyFont", sans-serif;

	white-space: nowrap;

	pointer-events: auto;
}


/* Textul principal */

.server-text {
	font-size: 24px;

	line-height: 1.4;

	text-shadow:
		2px 2px 0 #000,
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000;
}


/* Numărul de jucători */

#player-count {
	display: inline-block;

	padding: 2px 8px;

	margin: 0 4px;

	background: #ff7a1a;

	color: #ffffff;

	border-radius: 5px;

	font-weight: bold;
}


/* IP-ul */

#server-ip {
	display: inline-block;

	color: #ff7a1a;;

	font-weight: bold;

	cursor: pointer;

	padding: 2px 6px;

	border-radius: 4px;

	transition: all 0.2s ease;

	user-select: none;
}


/* Hover pe IP */

#server-ip:hover {
	background: rgba(225, 29, 42, 0.25);

	transform: scale(1.05);
}


/* Textul mic de sub */

.copy-hint {
	margin-top: 4px;

	font-family: "Open Sans", Helvetica, sans-serif;

	font-size: 12px;

	color: rgba(255, 255, 255, 0.8);

	text-shadow: 1px 1px 2px #000;
}


/* Responsive */

@media (max-width: 600px) {

	.server-text {
		font-size: 18px;
	}

	.copy-hint {
		font-size: 10px;
	}
}


.copyright {
	position: fixed;
	bottom: 10px;
	left: 0;
	width: 100%;

	font-family: Arial, sans-serif;
	font-size: 12px;
	color: #808080;

	text-align: center;

	z-index: 50;
}