.text-red {
  color: #ff0000;
}

.text-gold {
  color: #ddba00;
}

.text-black {
  color: #000;
}

.text-gray {
  color: rgb(25,25,25);
}

.text-green {
  color: rgb(0,184,0);
}

.bg-heading {
  background-color: rgb(25,25,25);
  background: -webkit-linear-gradient(top, rgba(40,40,40,1) 0%,rgba(25,25,25,1) 30%,rgba(25,25,25,1) 100%);
  background: linear-gradient(to bottom, rgba(40,40,40,1) 0%,rgba(25,25,25,1) 30%,rgba(25,25,25,1) 100%);
}

.bg-md-gray {
  background-color: rgb(25,25,25);
}

.bg-dk-gray {
  background: rgb(15,15,15);
}

.bg-black {
  background-color: black;
}

.bg-green {
  background: rgb(0,88,0);
}

.bg-signup {
  background: linear-gradient(black, rgb(30,30,30));
}

.text-shadow-lg {
  text-shadow: 2px 2px 2px black;
}

.border-bot {
  border-bottom: solid 10px rgba(0,0,0,0.15);
}

