body {
  background-color:#000000;
  color:blackopk;
}
h5{
	color:white;
	
}
p{
	color:white;
	
}
table{
  color: white;	
}
th{
  color: black;;
  font-weight: bold;
}
tr:nth-child(odd) {
  background-color: white;
  color: black;
}

tr:nth-child(even) {
  background-color: white;
  color: black;;
}
header,footer{
	  background-color: black;
	  color: white;
	
}
a:link {
  color: blue;
}

/* visited link */
a:visited {
  color: blue;
}

/* mouse over link */
a:hover {
  color: #d40c3c;
}

/* selected link */
a:active {
  color: blue;
}
.card{
	
	background-color:#000000;
	border:1px solid rgba(255,255,255,.125);
}


/* (A) FIXED WRAPPER */
.hwrap {
  overflow: hidden; /* HIDE SCROLL BAR */
  background: #343a40;
}
 
/* (B) MOVING TICKER WRAPPER */
.hmove { display: flex; }

/* (C) ITEMS - INTO A LONG HORIZONTAL ROW */
.hitem {
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
}
 
/* (D) ANIMATION - MOVE ITEMS FROM RIGHT TO LEFT */
/* 4 ITEMS -400%, CHANGE THIS IF YOU ADD/REMOVE ITEMS */
@keyframes tickerh {
  0% { transform: translate3d(100%, 0, 0); }
  100% { transform: translate3d(-400%, 0, 0); }
}
.hmove { animation: tickerh linear 60s infinite; }
.hmove:hover { animation-play-state: paused; }