button {
  width: 50%; 
  height: 100px;
  font-size: 25px;
  margin: 20px;
  color: #34da34;
  background-color: #4e4e6e;
  border: none;
  border-radius: 20px;
  transition: .5s;
}

button:hover {
  background-color: #6a6a95;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  button {
    width: 100%!important;
    margin: 10px;
  }
  .wrapper {
    flex-wrap: wrap;
  }
  .pointsCounter {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    background-color: #000000ac;
    top: 0;
    left: 0;
  }
}

#points, #autoDisplay {
  font-size: 25px;
  text-align: center;
  margin: 20px;
}

body {
	background-image: url("../image/dark.png");
  color: #34da34;
  margin: 0px;
}