/* tweak defaults if variables set */
body {
  font-size: 1.1rem;
  color: #111;
}

a {
  color: #0d6efd;
}
a:hover {
  color: #111;
}

/* change container size for easier reading */
@media (min-width: 992px) {
  .container {
    max-width: 950px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 950px;
  }
}
/* skip nav for accessibility, based on https://webaim.org/techniques/skipnav/ */
#skip-to-content a {
  padding: 6px;
  position: absolute;
  top: -200px;
  left: 0px;
  color: white;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  border-bottom-right-radius: 8px;
  background: #BF1722;
  -webkit-transition: top 1s ease-out;
  transition: top 1s ease-out;
  z-index: 100;
}

#skip-to-content a:focus {
  position: absolute;
  left: 0px;
  top: 0px;
  outline-color: transparent;
  -webkit-transition: top 0.1s ease-in;
  transition: top 0.1s ease-in;
}

/* remove link underline */
a {
  text-decoration: none;
}

/* add decorative borders  */
header {
  border-top: solid 4px #424242;
}
header .nav-tabs {
  border-bottom: none;
}
header .nav-tabs .nav-item {
  margin-bottom: -1px;
}

footer {
  border-top: solid 1px #424242;
}
footer .nav-pills .nav-link.active {
  background-color: #0d6efd;
}
footer .nav-link {
  color: rgba(0, 0, 0, 0.7);
}
footer .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
footer .nav-link:hover {
  color: rgba(0, 0, 0, 0.8);
  text-decoration: underline;
}

#footer-title a {
  color: rgba(0, 0, 0, 0.9);
}

/* scroll to top */
#scroll-to-top {
  display: none;
  position: fixed;
  bottom: 35px;
  right: 20px;
  z-index: 99;
  font-size: 40px;
}

/* bootstrap icons tweaks */
.bi {
  display: inline-block;
  fill: currentColor;
  vertical-align: text-bottom;
  overflow: hidden;
  width: 1em;
  height: 1em;
  vertical-align: -0.1em;
}

/* feature include tweaks */
.feature-alert p:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .feature-w-25 {
    width: 25% !important;
  }
  .feature-w-50 {
    width: 50% !important;
  }
  .feature-w-75 {
    width: 75% !important;
  }
  .feature-w-100 {
    width: 100% !important;
  }
}
/* code blocks */
div.highlighter-rouge {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  overflow: auto;
  padding: 1rem 1.5rem;
  border-radius: 0.25rem;
}

/* github style blockquotes */
blockquote {
  border-left: 4px solid #828282;
  margin: 1.5rem 0rem 1.5rem 0rem;
  padding: 0.5rem 0rem 0.5rem 2rem;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/* term highlighting */
.term {
  font-size: 1.3rem;
  font-weight: bold;
}

/* add your tweaks here! */
.badge {
  color: white;
  padding: 4px 8px;
  text-align: center;
  border-radius: 15px;
  border: 1px solid transparent;
  box-shadow: 0px 2px 5px #ccc;
}

.badge:hover {
  cursor: pointer;
}

.youtube {
  background-color: red;
}

.youtube:hover {
  background-color: #bb0000;
  border: 1px outset #990000;
}

.ia {
  background-color: blue;
}

.ia:hover {
  background-color: #0000bb;
  border: 1px outset #000099;
}

.slides {
  background-color: #009900;
}

.slides:hover {
  background-color: #006600;
  border: 1px outset #009900;
}

.badge a {
  color: white;
  text-decoration: none;
}

/*# sourceMappingURL=styles.css.map */