/* ### Include ### */
@import 'home.css';
@import 'distribution.css';
@import 'profit.css';
@import 'details.css';
@import 'data.css';
/* ### General styles ### */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -1;
}

body {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  color: white;
}

/* ### Navbar styles ### */
.navbar {
  background-color: rgba(0, 0, 0, 0.6039215686);
  font-size: 1.2rem;
  width: 100% !important;
  position: fixed !important;
  padding: 1rem 2rem;
  border-radius: 0.3rem;
}
.navbar a {
  color: white;
}

.navbar a:hover {
  color: grey;
}

/* ### Content styles ### */
.content-container {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8156862745);
  border-radius: 0.3rem;
  overflow-y: auto;
  border-top: 2.5rem solid rgba(0, 0, 255, 0);
  bottom: 0;
}

.content {
  padding: 0 2rem 3rem;
}

.content-container::-webkit-scrollbar {
  display: none;
}

/* ### Media Queries ### */
@media (max-width: 991.98px) {
  /* styles for medium screens */
  .content-container {
    margin-top: 10rem;
  }
  .navbar {
    margin-top: 3.5rem;
  }
}
@media (min-width: 992px) {
  /* styles for large screens */
  .content-container {
    margin-top: 9rem;
  }
  .navbar {
    margin-top: 2.5rem;
  }
}