/* CSS rules */

/* p {color: red;font-family: sans-serif;font-size: 16px;} */
p {color: black;font-family: sans-serif;font-size: 16px;}
/* p {color: red;font-family: verdana;font-size: 12px;} */
/* p {color: red;font-family: courier;font-size: 160%;} */

/*  Body rule: Transforms the background color of our body (AKA the visible page) from white to light gray */
/* body {background-color: lightgray;} */
/* body {background-color: rgb(118,215,196);} */
/* body {background-color: rgb(209, 242, 235);} */
body {background-color: rgb(133, 193, 233);}


/*
rgb(208, 236, 231)
rgb(209, 242, 235)
rgb(163, 228, 215)
rgb(133, 193, 233)
rgb(118, 215, 196)
rgb(93, 173, 226)
*/

h1 {font-family: sans-serif;}
h2 {font-family: sans-serif;}  
h3 {font-family: sans-serif;}  
h4 {font-family: sans-serif;}  
h5 {font-family: sans-serif;}  
h6 {font-family: sans-serif;}

/* a {font-family: sans-serif;font-size: 12px}   */
a {font-family: sans-serif;font-size: 16px}  

/* Changes line spacing for a list */
ul {line-height: 25px;}

/* Text class rule: Changes color of any element I tag with the "class" attribute to green (overriding paragraph rule above it) */
.textgreen {color: green;font-family: verdana;}
.textblue {color: rgb(208, 236, 231);font-family: sans-serif;}
.text {color: rgb(209, 242, 235);font-family: sans-serif;}

/* The sidebar menu */
.sidenav {
    height: 100%; /* Full-height: remove this if you want "auto" height */
    width: 140px; /* 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: #111; /* Black */
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 20px;
  }
  
  /* The navigation menu links */
  .sidenav a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    /* font-size: 25px; */
    font-size: 20px;
    color: #818181;
    display: block;
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidenav a:hover {
    color: #f1f1f1;
  }
  
  /* Style page content */
  .main {
    margin-left: 160px; /* 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;}
  }

  
