body {
  height: 100%;
  color: white;
  background-color: black;
}

.bg { 
  background-size: cover;
  background-image: url("../images/bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  height: 100%; 
}

.orange-translucent-bg { background-color: rgba(255, 96, 0, 0.3); }
.black-translucent-bg { background-color: rgba(0,0,0,0.3); }

ul {
  list-style: none; /* Remove default bullets */
}
ul li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #ff6000; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  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) */
}

.mark {
  color: #ff6000;
  background-color: transparent;
  padding: 0;
}

a:any-link {
  color: #ff6000;

}