* {
  font-family: 'Sofia Sans', sans-serif;
}

.accordion-button:not(.collapsed) {
  color: rgb(248, 249, 250);
  background-color: rgb(26, 29, 32);
}

.dead {
  background-color: rgb(26, 29, 32);
}

.captured {
  color: rgb(255, 193, 7)
}

.popup {
  margin: 70px auto;
  padding: 20px;
  width: 30%;
  position: relative;
  transition: all 5s ease-in-out;
  background-color: rgb(26, 29, 32);
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 1;
}

.overlay-show {
  opacity: 1;
  visibility: visible;
}

