/* 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: #8e8dbe;
  color: white;
  font-family: Courier New;
  padding: 10px;
  display: inline;
  
}

#wrapper {
  display: flex;
  justify-content: space-between;
  
  margin: 5%;
}

navbar ul{
  list-style-type: none;
}

#navbar-div {

  /*Lines 28 to 36 were taken from w3schools.com*/
  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: #7a306c;
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 20px;

}

.navigation-element {
  background-color: #7a306c;
  display: block;
}

.navigation-element a {
  display: block;
  color: white;
  padding: 10px 0;
  text-decoration: none;
}

.navigation-element a:hover {
  background-color: #a9e4ef;
  color: #8e8dbe;
}

#main {
  padding: 5%;
  margin: auto;
  width: 60%;
  
}

#main > h1 {
  font-size: 50px;
}

.main-section {
  background-color: #7a306c;
  padding: 10px;
  margin : 40px 0;
  border: dashed #8e8dbe;
}

.main-section:hover {
  background-color: #a9e4ef;
  color: #7a306c;
}



}