html,
body,
.container-table {
  height: 100%;

  background-color: black;

  color: #2823fc;
}

.container-table {
  display: table;
}

.vertical-center-row {
  display: table-cell;

  vertical-align: middle;
}

img {
  max-width: 100%;
}

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.tab-content {
  background: black;
}

.nav-tabs {
  border-bottom: none;
}

.nav-tabs .nav-link {
  border: none;

  border-radius: 5px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #2823fb;

  background-color: #21c300;

  font-weight: bold;
}



@media (max-width: 768px) {
    .nav-justified .nav-item{
        max-width: 100px !important;
    }
}

