/*
  Top styles
*/
body {
    background-color: #000;
    color: #fff;
    font-family: 'Didact Gothic', sans-serif;
}

/* List styles */
ul {
  list-style: none;
}

ul li::before {
  content: "\25A0";
  color: #00771E; 
  font-weight: bold; 
  display: inline-block; 
  width: 1em; 
  margin-left: -1em; 
  padding-right: 20px;
}


/* a tags, links, urls */
a, a:visited {
  color: #fff;
  transition: all .3s ease-in;
}

a:hover {
  color: #88D8FF;
  text-decoration: none;
}


/* Bootstrap buttons */
.btn-primary {
  color: #fff;
  border-color: #fff;
}


.btn-primary {
  background-color: transparent;
  transition: all .5s ease-in;
}

.btn-primary:hover {
  border-color: transparent;
  background-color: transparent;
}

.btn-primary:active {
  border-color: #FF11E9;
  background-color: #FF11E9;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  border-color: #FF11E9;
  background-color: #FF11E9;
}

.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(77, 0, 38, 0.3);
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(77, 0, 38, 0.3);
}

.btn-primary:focus {
  border-color: #FF11E9;
  background-color: transparent;
}

