/* Text styles */
A:link { COLOR: black; TEXT-DECORATION: none; font-weight: normal }
A:visited { COLOR: black; TEXT-DECORATION: none; font-weight: normal }
A:active { COLOR: black; TEXT-DECORATION: none; }
A:hover { COLOR: #0080FF; TEXT-DECORATION: none; font-weight: none }

ul {
  list-style: none; /* Remove default bullets */
}
ul li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #0080FF; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  font-size: 24px;
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
  vertical-align:middle;
}
* {
    font-family: Arial;
    font-size: 20px;
}

.button {
  background-color: #000000;
  border: none;
  color: white;
  padding: 5px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  margin: 2px 2px;
  cursor: pointer;
}

.button:hover {
  background-color: #0080FF;
}
