.container {
    font-family:'Courier New', Courier, monospace;
    overflow-y: auto; /* Enable vertical scrollbar if content exceeds container height */
    max-height: 80vh; /* Limit container height to 80% of viewport height */
}
  
  .container::-webkit-scrollbar {
    width: 5px; /* Width of the scrollbar */
  }
  
  .container::-webkit-scrollbar-track {
    background-color: transparent; /* Track background color */
  }
  
  .container::-webkit-scrollbar-thumb {
    background-color: #888; /* Scrollbar thumb color */
    border-radius: 6px; /* Border radius of the thumb */
  }
  
  /* Additional styling for the content */
  h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
  }
  
  h2, h3 {
    margin-bottom: 10px;
  }
  
  ul {
    list-style: none;
    padding-left: 0;
  }
  
  li {
    text-align: center;
  }
  