html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


html {
    box-sizing: border-box;
    font-family: "Open Sans", Helvetica, sans-serif;
}

body {
    background: linear-gradient(rgba(20, 26, 35,0.75),rgba(20, 26, 35, 0.75)), url('./icons/background-img.jpg') top center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: transparent;
    padding: 15px 25px;
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    text-align: center;
    text-transform: uppercase;
}

.logo img {
    transition: all 0.2s ease;
	width: 50%;
    margin-bottom: 25px;
}

.logo img:hover {
    transform:scale(1.1);
    cursor: pointer;
}

.img {
    margin: auto;
    max-width: 50%;
    display: block;
}

a {
    display: flex;
    justify-content: center;
    align-items: center;
}


.playercount {
	display: inline-block;
	margin: 20px 15px 0 15px;
	padding: 5px 10px;
	background-color: rgba(0, 0, 0, 0.253);
	font-size: 1em;
	color: white;
	text-align: center;
	border-radius: 999px;
	border-color: #ffffff;
	line-height: 27px;
}

.playercount > p > span {
	font-weight: bold;
	padding: 3px 6px;
	border-radius: 5px;
	background: #006781;
	margin: 0 3px;
}

.extrapad {
	padding: 0;
}

.ip {
	cursor: pointer;
}

.items {
	display: flex;
	    justify-content: space-between;
	    flex-basis: 100px;
	padding: 18px 0 10px 0;

}

.item img {
	transition: all 0.2s ease;
	margin-bottom: 7px;
    margin-top: 0px;
}

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

.ipbutton {
    background: none;
    color:#60f4ff;
    border: 2px solid;
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 1em 2em;
    font-size: 1em;
    transition: color 0.25s, border-color 0.25s, box-shadow 0.25s,transform 0.25s;
}

.ipbutton:hover {
    border-color: #5cb0ff;
    color: white;
    box-shadow: 0 0.5em 0.5em -0.4em #5cb0ff;
    transform: translateY(-0.25em);
    cursor: pointer;
}

