/* 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: black;
  color: white;
  font-family: Courier;
  margin: 0;
  padding: 20px;
    }
    
    

 /*###################Sidebar##################*/
    
    .sidebar {
      position: fixed;
      top: 0;
      left: 0;
      width: 220px;
      height: 100%;
      background-color: #111;
      padding: 20px;
      box-sizing: border-box;
    }

    .sidebar h2 {
      color: orange;
      font-size: 20px;
      margin-bottom: 15px;
    }

    .sidebar a {
      display: block;
      color: orange;
      text-decoration: none;
      margin: 10px 0;
    }

    .sidebar a:hover {
      text-decoration: underline;
    }
    
    
    
    /*#################EndSideBar###############################*/
    
    
    
    
    
    /*####################MainContent###########################*/
    
    
    .main {
      margin-left: 240px; /* leave room for sidebar */
      padding: 20px;
      max-width: 800px;
    }
    
    
    .center-images {
      text-align: center;
    }
    
    .center-images img {
      display: block;
      margin: 20px auto; /* centers and adds vertical spacing */
      max-width: 90%;
      height: auto;
    }
    
    .content {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
    }
    
    a {
      color: orange;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }
    
    /*#####################EndMainContent########*/
    