body {
  
  background-color: #e8ebed;
  color: black;
  font-family: Serif;
}


html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: auto; 
}

.scroll-box {
    width: 66%; /* Adjust width as needed */
    height: 500px; /* Set a fixed height */
    background-color: white; /* Light gray background */
    border: 1px solid #ccc; /* Optional: adds a subtle border */
    margin: 0 auto; /* This centers the box horizontally */
    padding: 75px; /* Adds space between text and the edge */
    overflow-y: auto; /* Forces a vertical scrollbar */
    box-sizing: border-box; /* Ensures padding doesn't break your width */
}
