body {
  margin: 0;
  font-family: "aglet-slab-variable", sans-serif;
  font-variation-settings: "wght" 300;
  line-height: 1.5rem;
}

h1, h2 {
  font-family: "aglet-slab-variable", sans-serif;
  font-variation-settings: "wght" 700;
}

h3 {
  font-family: "aglet-slab-variable", sans-serif;
  font-variation-settings: "wght" 550;
  margin-bottom: 0;
}

header {
  background-color: black;
}

p {
  text-indent: 2.5rem;
}

.center-txt {
  text-align: center;
}

a {
  color: #595959;
  font-variation-settings: "wght" 550;
}
a:hover {
  color: #82e3fb;
}

/* The sidebar menu */
.sidebar {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0;
  left: 0;
  background-color: black; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  -webkit-transition: 0.5s;
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */
  /* The sidebar links */
  /* Position and style the close button (top right corner) */
}
.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #e5e5e5;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebar a:hover {
  /* When you mouse over the navigation links, change their color */
  color: #82e3fb;
}
.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* The button used to open the sidebar */
.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: black;
  color: white;
  padding: 10px 15px;
  border: none;
}
.openbtn:hover {
  background-color: #82e3fb;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  -webkit-transition: margin-left 0.5s;
  transition: margin-left 0.5s; /* If you want a transition effect */
  padding: 20px;
}

#current {
  font-variation-settings: "wght" 550;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidebar {
    padding-top: 15px;
  }
  .sidebar a {
    font-size: 18px;
  }
}
.intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.intro img {
  max-width: 300px;
  width: 100%;
  height: 100%;
}
.intro h2 {
  margin: 0.5rem;
}
.intro div {
  max-width: 70%;
  margin: 30px auto;
}

.card_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.feat_card {
  width: 250px;
  height: auto;
  margin: 10px;
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}
.feat_card h4 {
  padding: 10px;
  margin: 0;
  text-align: center;
  font-variation-settings: "wght" 350;
  border: 2px #82e3fb solid;
  border-radius: 15px 15px 0 0;
  background: #82e3fb;
}
.feat_card p {
  padding: 10px;
  margin: 0;
  border: 2px #82e3fb solid;
  border-top: 0;
  border-radius: 0 0 15px 15px;
  background: #e5f9fe;
}
.feat_card:hover h4 {
  border: 2px black solid;
  background: #b3eefd;
}
.feat_card:hover p {
  border: 2px black solid;
  border-top: 0;
  background: #effbfe;
}

.btn {
  padding: 10px;
  margin-bottom: 25px;
  border-radius: 15px;
  background: black;
  color: white;
  text-decoration: none;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.btn:hover {
  font-variation-settings: "wght" 500;
  background-color: #82e3fb;
  color: black;
}

.prjs {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

code {
  border: 5px #82e3fb solid;
  border-radius: 25px;
}

pre code.hljs, code.hljs {
  padding: 0 10px;
}

.cmd {
  padding: 10px;
  border-radius: 25px;
  background: black;
  color: white;
}