/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

/* The sidebar menu */
.sidenav {
  width: 150px;
  position: fixed;
  z-index: 1;
  top: 20px;
  left: 10px;
  background: #eee;
  border-style: solid;
  border-color: black;
  overflow-x: hidden;
  padding: 8px 0;
}

.sidebar {
  width: 150px;
  position: fixed;
  z-index: 1;
  top: 20px;
  left: 10px;
  background: #eee;
  overflow-x: hidden;
  padding: 8px 0;
}

.main {
  margin-left: 190px; /* Same width as the sidebar + left position in px */
  margin-right: 200px;
  font-size: 20px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}