@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

h1 {
  text-transform: uppercase;
}

*,
li {
  text-decoration: none;
}

/* The side navigation menu */
.sidebar {
  margin: 0;
  padding: 0;
  width: 250px;
  background-color: #e8e8e8;
  position: fixed;
  height: 100%;
}

#navbar .topnav {
  overflow: hidden;
}

#navbar {
  position: fixed;
}

/* Sidebar links */
.sidebar a {
  display: block;
  color: black;
  padding: 16px;
  text-decoration: none;
  text-align: center;
  border: 1px solid #89beb3;
  /* Green border */
}

/* Active/current link */
.sidebar a.active {
  background-color: #625261;
  color: white;
}

/* Links on mouse-over */
.sidebar a:hover:not(.active) {
  background-color: #db6400;
  color: white;
}

/* Page content. The value of the margin-left property should match the value of the sidebar's width property */
div.content {
  margin-left: 250px;
  padding: 1px 16px;
  height: 1000px;
}

code {
  font-family: Consolas, "courier new";
  color: crimson;
  background-color: #f1f1f1;
  padding: 2px;
  font-size: 105%;
}

.w3-code {
  padding: 8px 20px;
  margin: 24px -20px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background-color: #f1f1f1;
}

/*Table*/
table,
th,
tr,
td {
  border: 1px solid black;
}

@media screen and (max-width: 520px) {
  div.main-body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-template-areas: "#navbar" "main-section";
  }
  #navbar .topnav {
    position: inherit;
    width: 100%;
  }
  #navbar {
    position: relative;
  }
  div.content {
    margin-left: 0;
  }
}
/*# sourceMappingURL=main.css.map */