body {
  background-color: black;
  color: white;
  font-family: Verdana;
  text-align: center;
  list-style-position: inside;
  font-size: 2vmin;
}

.noselect {
  -moz-user-select: none; /* Mozilla */ /* so that, like, clickign on the text doesnt block you from clicking on the image beneath*/
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}