/* 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: AliceBlue;
  color: black;
  font-family: Verdana;
}
/*Top title of every page*/
h1 {
  font-size: 50px;
  background-color:RoyalBlue;
  border:5px solid MediumBlue;
  color: AliceBlue;
  width:95%;
  padding:10px
  }  

.MainText{
margin:10px;
font-size:15px;

}
/*Side Nav code frm W3schools*/
/* The sidebar menu */
.sidenav {
  height: 50%; /* 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: 0; /* Stay on top */
  top: 1; /* Stay at the top */
  left: 1;
  background-color: AliceBlue; /* White */
  overflow-x: hidden; /* Disable horizontal scroll */
  border:2px solid DarkSlateGray;
}

/* The navigation menu links */
.sidenav a {
  text-align: center;
  text-decoration: none;
  font-size: 25px;
  color: DarkSlateGray;
  display: inline-block;
}

.sidenav h6{
  text-align: center;
  text-decoration: none;
  font-size: 25px;
  color: AliceBlue;
  background-color:RoyalBlue;
  display: inline-block;
}

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

/* Style page content */
.main {
  margin-left: 170px; /* Same as the width of the sidebar */
  padding: 0px 10px;
}

/* 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;}
}