:root {
  --blue950: rgb(23, 37, 84);
  --bs-primary: rgb(23, 37, 84);
  --bs-primary-rgb: 23, 37, 84;
  --backgroundcolor: rgb(238, 238, 238);
}

@font-face {
  font-family: "JetBrainsMono";
  src: url("../fonts/JetBrainsMono-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}

.font-jetbrains {
  font-family: "JetBrainsMono", sans-serif;
}

.cursorpointer {
  cursor: pointer;
}

body {
  background-color: var(--backgroundcolor);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--backgroundcolor);
}
::-webkit-scrollbar-thumb {
  background: var(--blue950);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--blue950);
}

.carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 1;
}

h1 {
  font-size: 3rem;
  text-align: center;
}
h5 {
  text-align: center;
}

footer {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(23, 37, 84, 0.7)), url("../images/background/datanumber.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
  height: 100px;
}
