.game-mode-choice-screen {
  color: var(--font-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
}

.game-modes {
  display: grid;
  grid-template-columns: repeat(2, 550px);
  color: white;
  justify-content: center;
  align-content: center;
  margin-top: 40px;
  margin-left: 100px;
}

.game-mode-images {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.players {
  border: 2px solid white;
  width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  cursor: pointer;
}

.two-players:hover {
  box-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
}
.singleplayer:hover {
  box-shadow: 0 0 15px #ff00ff, 0 0 30px #ff00ff;
}

.players h2 {
  color: black;
  font-size: 2rem;
}

@media (max-width: 500px) {
  .game-modes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    gap: 30px;
    margin: 10px;
    margin-top: 20px;
  }

  .choice-heading{
    font-size: 1.7rem;
    margin-top: -20px
  }

  .players {
    width: 300px;
  }

  .players h2 {
    font-size: 1.5rem;
  }
}
