@media screen {
  * {
    box-sizing: border-box;
  }
  /* The sidebar menu */
  .sidenav {
    height: 100%; /* Full-height: remove this if you want "auto" height */
    width: 160px; /* Set the width of the sidebar */
    position: fixed; /* Fixed Sidebar (stay in place on scroll) */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: #004433; /* Dark green */
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 20px;
  }

  /* The navigation menu links */
  .sidenav a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 16px;
    color: #d0d0d0;
    display: block;
  }

  /* When you mouse over the navigation links, change their color */
  .sidenav a:hover {
    color: #ffffff;
  }

  /* Style page content */
  .main {
    margin-left: 160px; /* Same as the width of the sidebar */
    padding: 0px 0px;   /* top-bottom; left-right; */
  }

  body { 
    font-size: 100%;
  }
  h1 {
    background-color: #004433;
    color: white;
    font-size: 2.5em; 
    padding: 0px 10px;
  }
  h1:first-of-type {
    margin-top: 0px;
  }
  h2 { 
    background-color: #004433;
    color: white;
    font-size: 1.875em; 
    padding: 0px 10px;
  }
  h3 { 
    color: #004433;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 0px;
  }
  h3:first-of-type {
    margin-top: 0px;
  }

  p {
    color: #004433;
    font-size: 0.875em; 
    padding: 4px 10px;
  }

  .Large { font-size: 2.5em; }
  .large { font-size: 1.875em; }
}

/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
/*
   <!-- modified timestamp start -->
   <hr/><p>Last modified: Thu Jul 13 13:09:57 IST 2023</p>
   <!-- modified timestamp end -->
 */
