
body{

  background-color: rgb(255, 255, 255);
  font-size: 16px;
  
}

/* Fixed sidenav, full height */
  /* Style the sidenav links and the dropdown button */
  .sidenav a, .dropdown-btn {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 16px;
    color: #060000;
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
  }
  
  /* On mouse-over */
  .sidenav a:hover, .dropdown-btn:hover {
    color: #f1f1f1;
  }
  
  /* Main content */
  .main {
    margin-left: 200px; /* Same as the width of the sidenav */
    font-size: 20px; /* Increased text to enable scrolling */
    padding: 0px 10px;
  }
  
  /* Add an active class to the active dropdown button */
  .active {
    background-color: cornflowerblue;
    color: white;
  }
  
  /* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
  .dropdown-container {
    display: none;
    padding-left: 8px;
  }
  
  /* Optional: Style the caret down icon */
  .fa-caret-down {
    float: right;
    padding-right: 8px;
  }

  .sidebarview
  {
   height: 600px;
   background-color: #060000;
  }
  .navbar
  {
   
    font-family: 'Cardo', serif;
  }
  .btn
  {
    background-color: #212529;
    color:rgb(240, 216, 216);
  }
  .list-group-item
  {
    background : transparent;
    border: none;
    font-weight: bold;
    color: rgb(255, 255, 255);
    font-family: 'Cardo', serif;
    font-size: 18px;
    padding: 10%;
  }
  .view
  {
   left: 500px;
  }

  
  /* Some media queries for responsiveness */
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }
  
