.article {
  max-height: 600px; /* Adjust this value as needed */
  overflow-y: auto;
  -ms-overflow-style: none;  /* for Internet Explorer and Edge */
  scrollbar-width: none;  /* for Firefox */
  border: 5px solid #4682B4; /* Steel Blue */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin-bottom: 10px;
  margin-right: 5px;
  border-radius: 1px;
}

.navbar {
      background-color: #B0C4DE; /* LightSteelBlue */
    }
    .navbar-brand, .navbar-nav .nav-link {
      color: #000000; /* Black */
    }
    .jumbotron, .footer {
      background-color: #4682B4; /* Steel Blue */
    }
    .jumbotron h1, .jumbotron p, .footer {
      color: #FFFFFF; /* White */
    }

.centered-heading {
  text-align: center;
}

.jumbotrons {
  height: 15vh; /* Set the height to 50% of the viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#article::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}