/* acme-regular - latin */
@font-face {
  font-family: 'Acme';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/acme-v11-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/acme-v11-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

body {
	font-family: "Acme", sans-serif;
	font-size: 20px;
	margin: 0;
	position: relative;
	outline: none;
	color: white;
}

p {
	margin: 0;	padding: 3px;
}

.logo img {
	width: 33%; /* logo scales with screen width */
	animation-name: logo;
	animation-duration: 10s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

@keyframes logo {
	0%   { transform: scale(1);    }
	50%  { transform: scale(1.05); }
	100% { transform: scale(1);    }
}

.playercount {
	display: inline-block;
	margin: 20px 15px 0 15px;
	padding: 2px 0;
	background-color: #0f2d5a;
	font-size: 1.1 rem;
	color: white;
	text-align: center;
	border-radius: 5px 0 5px 0;
	line-height: 27px;
}

.playercount > p > span {
	font-weight: bold;
	padding: 3px 3px;
	border-radius: 3px;
	background: rgba(9, 150, 158, 0.7);
	margin: 0 2px;
}

.ip {
	cursor: pointer; letter-spacing: 2px;
}

.items {
	display: flex;
    justify-content: space-around;
    flex-basis: 100px;
	padding: 18px 0 10px 0;
}

.item img {
	transition: all 0.1s ease;
	margin-bottom: 7px;
}

.item img:hover {
	transform: scale(1.3);
}

.item-title {
	font-weight: bold;
	font-size: 1.5rem;
	color: white;
}

.item-subtitle {
	font-size: 1.3rem;
	color: yellow;
	
}

.item-title, .item-subtitle {
	margin: 0;
	padding: 1px;
}


.t-shadow {	
  text-shadow: 0.075em 0.08em 0.1em rgba(0, 0, 0, 1);
}

.foot {
	font-size: 1rem;
}

@media(min-width: 400px) {


	.playercount {
		margin-top: 30px;
		padding: 5px;
	}

	.playercount > p > span {
		padding: 2px 7px;
	}
}

@media(min-width: 1250px) {
	.xtitle {
		font-size: 24px;
	}

	.xsubtitle {
		font-size: 15px;
	}



	.items {
		padding: 30px 0 20px 0;
	}
	.playercount {
		font-size: 1.22em;
		padding: 10px;
	}



	.playercount > p > span {
		padding: 4px 7px;
	}
}

@media(min-width: 1000px) {
	.items {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}

	.item:not(:first-child) {
		margin-left: 90px;
	}
}



.homelink {
  cursor: url(../images/ui/home-cursor.png), auto;
}
