body {
  flex-direction: column;
  justify-content: space-around;
}

h1,
h2,
p {
  color: white;
  text-align: center;
}

div.SelectPlayers {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

div.SelectPlayers button {
  width: 33%;
  height: 300px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background-color: black;
  border: 1px solid white;
  border-radius: 10px;
  box-shadow: 0 4px white;
  cursor: pointer;
  transition: 1s;
}

div.SelectPlayers button:hover {
  box-shadow: 0 -4px white;
}

div.SelectPlayers button:active {
  color: black;
  border: 1px solid black;
  background-color: white;
  box-shadow: 0 0 10px white;
}

div.SelectPlayers button img.Controlos {
  width: 150px;
  height: 100px;
}

@media only screen and (max-width: 500px) {
  div.SelectPlayers {
    flex-direction: column;
  }
}
