* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #0A192F;
  font-family: "Roboto-Mono", monospace;
  overflow-x: hidden;
}

.navbar-toggler {
  margin-right: 10px;
}

.content {
  font-size: 24px;
}

.nav-link {
  margin-left: 10px;
}

.container {
  counter-reset: heading-counter;
}

.card {
  background-color: #10283A;
}

.card-header {
  color: #8892b0;
}

h1 {
  margin-top: 50px;
  color: #64ffda;
  font-size: 20px;
}

.big_header {
  color: #CCD6F6;
  font-size: clamp(40px, 8vw, 80px);
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.big_header_2 {
  color: #778899;
  font-size: clamp(40px, 8vw, 80px);
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

p {
  color: #8892b0;
  font-size: 20px;
}

.numbered_heading {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #CCD6F6;
  position: relative;
  left: 50px;
  counter-increment: heading-counter;
}

.numbered_heading::before {
  content: "0" counter(heading-counter) ".";
  font-weight: 400;
  left: -40px;
  color: #64ffda;
  position: absolute;
}

.numbered_heading::after {
  content: "";
  height: 2px;
  background-color: #CCD6F6;
  width: 15%;
  margin-left: 15px;
  position: absolute;
  top: 20px;
}

ul {
  color: #CCD6F6;
}

.card-header {
  font-size: 24px;
}
.card-header a {
  float: right;
  margin: 0 5px;
}
.card-header a svg {
  fill: #CCD6F6;
  transition: fill 0.5s ease;
}
.card-header a:hover svg {
  fill: #64ffda;
}

.card-body a {
  text-decoration: none;
  color: #64ffda;
}

.card-body a:hover {
  text-decoration: underline;
}

.carousel {
  display: flex;
  justify-content: center;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  position: absolute;
  top: 50%;
  background-color: #64ffda;
  width: 40px;
  height: 40px;
}

#footer {
  margin-top: 20px;
}
#footer ul {
  text-align: center;
}
#footer ul li {
  display: inline-block;
  margin: 10px 20px;
}
#footer ul li a svg {
  fill: #CCD6F6;
  transition: fill 0.5s ease;
}
#footer ul li a:hover svg {
  fill: #64ffda;
}
#footer p {
  text-align: center;
}

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