@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
/* créditos de la fuente a quien corresponda */

*, *::before, *::after {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	font-family:'Press Start 2P', sans-serif;
	color: #eee;
	font-weight: 1000px;
}


h1 {
	text-align: center;
	line-height: 1.3em;
	font-size: 1.3em;

}
h2 {
	font-size: 18px;
	text-align: center;
	padding-bottom: 20px;
}
html {
	height: 100%;
	width: 100%;
}
body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100vh;
	background-color: #222;
}
header {
	width: 100%;
	height: 30%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 30px;
}
header * {
	margin: 20px;
}
.container {
	max-width: 900px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding-top: 20px;
}

img {
	width: 250px;
	height: 250px;
	border-radius: 10px;
}
.item:hover, img:hover {
	transform: scale(1.1);
}

span {
	margin: 10px;
	background-color: #444;
}
#resultados {
	display: none;
	background-color: #555c;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: fixed;
	width: 100%;
	height: 100vh;
}
#bt {
	color:  #111;
	margin: 20px;
	width: 250px;
	height: 30px;
	border: none;
	outline: none;
	display: none;
}
#resultados * {
	margin: 10px;
}
#juego {
	 display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.jugadores {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#bt:hover, #bt:focus {
	width: 260px;
	height: 35px;
	font-size: 1.05em;
	background-color: #491;
}

footer {
	text-align: center;
	margin-top: 20px;
	background-color: #444;
	padding: 20px 0;
	width: 100%;
}

#h4 {
	display: none;
}
.jugadores img {
  	width: 125px;
  	height: 125px;
  }
 .jugadores h4 {
 	text-align: center;
 	line-height: 1.3;
 }
@media (min-width: 650px) {
	h1 {
		font-size: 1.8em;
	}
  .jugadores img {
  	width: 250px;
  	height: 250px;
  }
}
strong {
	font-size: 0.4em;
	color: #444;
}