/* Home */
header {
	min-height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55) 70%, rgba(66, 134, 244, 0.45) 99%),
	url("../img/minecraft.jpg") no-repeat center center;
	background-size: cover;
}

.header__info {
	display: inline-block;
	background: rgba(0,0,0,0.4);
	padding: 10px;
	font-size: 0.7em;
	color: white;
	text-align: center;
	font-family: 'Roboto';
}

#playercount,
#server-ip {
	color: cyan;
}

#server-ip {
	cursor: pointer;
	font-size: 1.3em;
}

.tooltip-container {
    position: relative;
    display: flex;
    place-content: center;
}

/* styling of the tooltip display */
p#tooltip-text {
    display: none;
    position: absolute;
    top: -60px;
    z-index: 1;
    background: blue;
    padding: 8px;
    font-size: 1rem;
    color: #fff;
    border-radius: 6px;
    animation: fadeIn 0.6s;
}

/* optional styling to add a "wedge" to the tooltip */
p#tooltip-text:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid blue;
}

@keyframes fadeIn {
 from {
   opacity: 0;
 }
 to {
   opacity: 1;
 }
}
/* Media Queries */

@media(min-width: 1000px) {
	.item:not(:first-child) {
		margin-left: 90px;
	}
}

@media(min-width: 700px) {
	.main-content {
		width: 40%;
		text-align: center;
		margin: 0 auto;
	}
	.header__info {
		font-size: 1.2em;
	}
}
