@import url('https://fonts.googleapis.com/css2?family=Baskervville&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');

@media (min-width: 768px) {}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Baskervville', serif;
  font-weight: bold;
}

p {
  font-family: 'Quicksand', sans-serif;
}

body {
  padding-top: 4rem;
  text-align: justify;
}

/* Enlaces */
a {
  color: #000;
  font-weight: bold;
}

a:hover {
  color: #000;
  text-decoration: none;
}

/* Abreviaturas con tooltips */
abbr[data-toggle="tooltip"],
abbr[data-bs-toggle="tooltip"] {
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px dotted #6c757d;
  cursor: help;
  transition: all 0.2s ease;
}

abbr[data-toggle="tooltip"]:hover,
abbr[data-bs-toggle="tooltip"]:hover {
  color: #0d6efd;
  border-bottom-color: #0d6efd;
}