/* The sidebar menu */
.sidebar {
    float:left;
    margin-left:100px;
    width: 250px; /* 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: black; /* Black */
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 20px;
}

/* The navigation menu links */
.sidebar a {
    color:white;
    font-size: 12pt;
}

/* When you mouse over the navigation links, change their color */
.sidebar a:hover {
    color: #d10808;
}

/* Style page content */
.main {
    margin-left: 160px; /* Same as the width of the sidebar */
    padding: 0px 10px;
}

.sidebar h1 {
    color:white;
    font-size: 16pt;
  }
  .sidebar h2 {
    color:rgb(167, 4, 4);
    font-size: 14pt;
    font-weight: bold;
    text-align: left;
  }
  .sidebar h3 {
    color:rgb(167, 4, 4);
    font-size: 12pt;
    margin-bottom: 2px;
  }
  
  .sidebar a {
    color:white;
    font-size: 12pt;
  }
  .sidebar p {
    color:white;
    font-size:12pt;
    font-weight:normal;
    margin: 2px;
  }

/* 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-width: 805px) {
    .sidebar {
        display: none;
    }
    
}