.card-title {
  font-weight: bold;
  font-size: x-large;
}

.autor-articulo {
  font-style: italic;
}

.texto-articulo {
  font-size: larger;
}

.div-notas {
  border-top: gray;
  border-top-style: double;
}

.nota {
  color: white;
  text-decoration: none;
}

.list-group-item {
  border: none
}

.dropdown-menu {
  animation: 1s slideup;
}

.custom-tooltip {
  --bs-tooltip-bg: white;
  --bs-tooltip-color: black;  
    border-radius: 7px !important;
  box-shadow: 2px 2px 4px 0px rgba(161, 161, 161, 1);  
}


@keyframes slideup {
  from {
    transform: translateY(-10%);
  }

  to {
    transform: translateY(0);
  }
}

