html {
  margin: 0px;
  padding: 0px;
  min-height: 100vh;
}

body {
  background-color: #191919;
  color: #ffffff;
  margin: 0px;
  height: 100%;
  padding: 10px; 
}

h1 {
  font-size: 70px;
}


/* Header */
.header {
  background-color: #000009;
  color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  width: 300px;
  overflow-y: auto;
  z-index: 997;
  /*border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);*/
}

.header .profile-img img {
  margin: 15px auto;
  display: block;
  width: 120px;
  border: 8px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.header h1 {
  font-size: 24px;
  margin: 0 auto 0 auto;
  font-weight: 700;
}

.header .social-links {
  margin: 0 0 20px 0;
}

.header .social-links a {
  color: #ffffff;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 2px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.header .social-links a:hover {
  color: #0077dd;
}

/* Menu */

.navmenu {
  padding: 0;
  z-index: 9997;
}

.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
}

.navmenu a,
.navmenu a:focus {
  color: #ffffff;
  padding: 15px 10px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: 0.3s;
  width: 100%;
}

.navmenu a .navicon,
.navmenu a:focus .navicon {
  font-size: 20px;
  margin-right: 10px;
  min-width: 1.2em;
  text-align: center;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: #0077dd;
}

/**********************************/

:root {
  --content-left-margin: 300px;
}

@media (max-width: 992px) {
  :root {
    --content-left-margin: 0px;
  }
}

.content {
  margin: 0px;
  margin-left: var(--content-left-margin);
  min-height: 100vh;
  display:flex;
  font-family: 'JetBrains Mono', monospace;
}

.content h1 {
  margin-bottom: 20px;
}

.content h2 {
  line-height: 150% !important;
}

.content p {
  text-align: justify;
  margin-bottom: 50px;
}

.content li, p, a {
  font-size: 24px;
}

.content a {
  text-decoration: none;
}
