/* 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." */
   
@font-face {
  font-family: etienne;
  src: url(fonts/dsetienne-webfont.woff);
}
@font-face {
  font-family: begale;
  src: url(fonts/castlebegale.woff2);
}
  /* The sidebar menu */
.sidenav {
  width: 350px; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 0; /* Stay on top */
  right: 0;
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 5px;
  padding-right: 20px;
}



 h1, h2, h3, h4, h5, div {
  color: black;
  font-family: etienne, sans-serif;
  opacity: 1;
}

p, ol , ul {
  color: black;
  font-family: begale, sans-serif;
  opacity: 1;
}  

code {
  font-family: Consolas,"courier new";
  color: black;
  background-color: #83adb5;
  padding: 2px;
  font-size: 105%;
}
pre code {
  background-color: #83adb5;
  border: 1px solid #6c797c;
  display: block;
  padding: 0px;
}

body {
  color: black;
  font-family: begale, sans-serif;
  max-width: 400px;
  margin: auto;
  background-color: #83adb5;
  background-image:  linear-gradient(#899396 .5px, transparent .5px), linear-gradient(to right, #899396 .5px, #83adb5 .5px);
  background-size: 60px 60px;
}

