* {
    padding: 0; margin: 0; box-sizing: border-box;
	font-family: "Open Sans", Helvetica;
}

body {
	/*Want to change background image?*/
	/*Upload a new one to the img folder.*/
	/*Make sure you name it 'minecraft.jpg'*/
	background: linear-gradient(rgba(20, 26, 35,0.55),rgba(20, 26, 35, 0.55)),
				url("../img/minecraft.jpg") no-repeat center center fixed;
	background-size: cover;
	font-family: "Open Sans", Helvetica;
	margin: 0;
	position: relative;
}

footer {
  text-align: center;
  padding: 3px;
  color: white;
}


.infotext {
	padding: 3% 8% 3% 8%;
	background-color: rgba(15, 199, 209, 0.75);
	margin: 1rem 1rem 3rem 1rem;
	display: flex;
	flex-direction: column;
	box-shadow: 0 0 8px black;
}

.infotext .title {
	font-size: 3rem;
	color: #a2f4ff;
	text-align: center;
	font-weight: bold;
	margin-bottom: 1rem;
}
.infotext p {
	color: white;
	font-size: 1.3rem; 
	text-shadow: 0 0 10px black;
	text-align: left;
	padding-bottom: 10px;
}
.infotext span {
	background-color: rgb(65, 164, 217);
	padding: 10px;
	font-weight: bold;
	box-shadow: 0 0 1rem black;
	text-align: center;
	font-size: 1.3rem;
	color: #a6f1fb;
	margin-top: 2rem;
}
.playercount {
	display: flex;
}
.itemstore {
	width: 10rem;
}
.destinyPlayers {
	display: flex;
	flex-direction: row;
	gap: 2rem;
	padding: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}
.player {
	box-shadow: 0 0 8px black;
	text-shadow: 0 0 10px black;
	background-color: rgba(15, 199, 209, 0.75);
	display: flex;
	flex-direction: column;
	justify-content: left;
	text-align: center;
	gap: 5px;
	padding-block: 30px;
	padding-left: 30px;
	padding-right: 30px;
}
.player h2 {
	color: white;
}
.player img {
	transition-duration: 300ms;
}
.player > img {
	width: 15rem;
}
.player img:hover {
	scale: 1.1;
}
.player h6 {
	color: white;
	font-size: 1rem;
	margin-top: 4px;
}
.socialSites {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 4px;
	cursor: pointer;
}
#filler {
	padding: 5%;
}



@media (width > 500px){
	.infotext {
		margin: 2rem 2rem 3rem 2rem;
		padding: 3rem 20% 3rem 20%;
	}
	.infotext p {
		text-align: justify;
	}
}