a {color: #ffffff;}
a:visited {color: #ffaa00;}
a:hover {color: #ffff55;}

body {
    background-color: #000;
    color: #c0c0c0;
}

.bg {
     position: fixed;
  left: 0;
  right: 0;
  z-index: 1;

  display: block;
  background-image: url('bg.png');
  width: 100%;
  height: 100%;
}

.content {
  position: relative;
  left: 0;
  right: 0;
  z-index: 9999;
  margin-left: 20px;
  margin-right: 20px;
 }

.card {
    background-color: #000;
    border: none;
}

.card-body {
    background-color: #000;
    border: none;
}

.card-title {
    background-color: transparent;
    border: none;
}

div {
    background-color: transparent;
    border: none;
}

.tra {
    color: #eaeaea;
  background:rgba(15,15,15,0.5);
  border-radius: 10px;
  padding: 15px;
}

.invert {
    -webkit-filter: invert(1);
    filter: invert(1);
}

/* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  width: 280px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}
