/* 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: rgba(229, 229, 247, 1);
  opacity: 0.8;
  background-image:  linear-gradient(rgba(0, 67, 112, 0.3) 1px, transparent 1px), 
                     linear-gradient(to right, rgba(0, 67, 112, 0.3) 1px, #e5e5f7 1px);
  background-size: 20px 20px;
  color: rgba(3, 107, 15, 1);
  font-family: Consolas;
}

.navbar {
  overflow: auto;
  margin: 0;
  padding-top: 10%;
  width: 200px;
  display: block;
  background-color: rgba(255, 222, 239, 1);
  height: 100%;
  position: fixed;
}

.navbar a {
 float: left;
 font-size: 16px;
 color: white;
 text-align: left;
 padding: 14px 16px;
 text-decoration: none;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: pink;
  text-align: left;
  width: 200px;
}

.pagespace {
  margin: auto;
  padding-left: 300px;
  padding-right: 100px;
  padding-bottom: 300px;
}


a:link {
  color: rgba(82, 165, 217, 1);
}

/* visited link */
a:visited {
  color: rgba(201, 150, 217, 1);
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: rgba(210, 193, 141, 1);
}