* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html.transition,
html.transition *,
html.transition *::before,
html.transition *::after {
  transition: all 150ms linear !important;
  transition-delay: 0 !important;
}

:root {
  --background-color: #f8f8f8;
  --secondary-background-color: #eee;
  --dark-background-color: #1a202c;
  --secondary-dark-background-color: #1b1e24;
  --text-color: #222;
  --secondary-text-color: #353535;
  --menu-background-color: #4b6c88;
  --menu-text-color: #fff;
  --news-category: #d7e9f8;
  --tutorials-category: #f3d8b4;
  --showcase-category: #f3b4c7;
  --copyright-text: #eee;
  --global-border-radius: 2px;
}

html[data-theme=light] {
  --primary-fg: var(--text-color);
  --secondary-fg: var(--secondary-text-color);
  --primary-bg: var(--background-color);
  --secondary-bg: var(--secondary-background-color);
  --link-color: #2779bd;
  --link-visited: #083c66;
}

html[data-theme=dark] {
  --primary-fg: var(--background-color);
  --secondary-fg: var(--secondary-background-color);
  --primary-bg: var(--dark-background-color);
  --secondary-bg: var(--secondary-dark-background-color);
  --link-color: #77b5e9;
  --link-visited: #3b93db;
}
html[data-theme=dark] pre {
  filter: invert(100%);
}

body {
  font-size: 18px;
  font-family: "PT Serif", serif;
  background-color: var(--primary-bg);
  color: var(--primary-fg);
}
body #mobile-navlinks {
  z-index: 900;
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease-in;
  position: absolute;
  background-color: var(--menu-background-color);
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--menu-text-color);
  font-family: "Jost", sans-serif;
}
body #mobile-navlinks a {
  color: var(--menu-text-color);
  text-decoration: none;
}
body #mobile-navlinks ul {
  padding: 2rem 0;
  height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  list-style-type: none;
}
body #mobile-navlinks.is-active {
  pointer-events: all;
  opacity: 1;
}
body #hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 1rem;
}
body #hero #hero-veasel {
  margin: 0 auto;
  width: 200px;
  pointer-events: none;
  transform: translateX(15%);
}
body #logo {
  display: block;
  width: 35px;
  height: 35px;
  background-image: url("/ms-icon-70x70.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
body nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--secondary-bg);
  padding: 1rem;
  font-family: "Jost", sans-serif;
}
body nav a {
  text-decoration: none;
}
body nav i {
  margin-right: 10px;
}
body nav #left-container {
  display: flex;
  align-items: center;
}
body nav #left-container #blog-title {
  margin-left: 15px;
  font-size: 1.5rem;
  font-family: "Jost", sans-serif;
  font-weight: bold;
}
body nav #right-container {
  display: flex;
  align-items: center;
}
body nav .nav-button {
  width: 36px;
  height: 36px;
  position: relative;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
body nav .nav-button svg {
  position: absolute;
  transition: opacity 150ms ease-in-out;
}
body nav .nav-button svg.active {
  opacity: 1;
}
body nav .nav-button:focus,
body nav .nav-button:hover {
  opacity: 0.8;
}
body nav #mobile-menu-toggle-button {
  z-index: 990;
}
body nav #mobile-menu-toggle-button .burger {
  position: absolute;
  width: 24px;
  height: 4px;
  background-color: var(--primary-fg);
  border-radius: 3px;
  transition: all 350ms ease-in-out;
}
body nav #mobile-menu-toggle-button .is-active {
  background-color: #c7c7c7;
}
body nav #mobile-menu-toggle-button #bar1 {
  transform: translateY(-8px);
}
body nav #mobile-menu-toggle-button #bar2 {
  opacity: 1;
}
body nav #mobile-menu-toggle-button #bar3 {
  transform: translateY(8px);
}
body nav #mobile-menu-toggle-button #bar1.is-active {
  transform: rotate(135deg);
}
body nav #mobile-menu-toggle-button #bar2.is-active {
  opacity: 0;
}
body nav #mobile-menu-toggle-button #bar3.is-active {
  transform: rotate(-135deg);
}
body nav .hidden-icon {
  opacity: 0;
}
body nav ul {
  list-style-type: none;
  display: flex;
}
body nav ul li {
  margin: 1rem;
  display: flex;
}
body nav ul .dropdown-menu {
  position: absolute;
  background-color: var(--secondary-bg);
  pointer-events: none;
  opacity: 0;
  top: 2.5rem;
  left: -1rem;
  transition: opacity 150ms ease-in-out;
  border-bottom: var(--global-border-radius) solid var(--primary-fg);
  border-bottom-left-radius: var(--global-border-radius);
  border-bottom-right-radius: var(--global-border-radius);
}
body nav ul .dropdown-menu ul {
  width: max-content;
  display: flex;
  flex-direction: column;
}
body nav ul .dropdown-menu.active {
  opacity: 1;
  pointer-events: auto;
}
body nav ul .dropdown-item {
  position: relative;
}
body aside {
  padding: 1rem;
  line-height: 1.8rem;
}
body a {
  color: var(--link-color);
  text-decoration: dotted underline;
  transition: opacity 100ms ease-in;
}
body a:hover,
body a:focus {
  opacity: 0.8;
  text-decoration: solid underline;
}
body a:visited {
  color: var(--link-visited);
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: "Jost", sans-serif;
  line-height: normal;
  margin: 2rem 0 0.5rem 0;
}
body .top-border {
  border-top: var(--global-border-radius) solid var(--secondary-fg);
  margin-top: 2rem;
}
body .bottom-border {
  border-bottom: var(--global-border-radius) solid var(--secondary-fg);
  padding-bottom: 1rem;
}
body .title {
  font-size: 3rem;
  text-align: center;
}
body .subtitle {
  text-align: center;
  padding-top: 1rem;
  font-style: italic;
  line-height: normal;
}
body main {
  padding: 1rem;
}
body main p,
body main ul,
body main li {
  line-height: 1.8rem;
}
body main li {
  margin-left: 1.5rem;
}
body main ol,
body main ul {
  margin-bottom: 1.5rem;
}
body main p {
  margin-bottom: 1rem;
}
body main figure {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body main figure img {
  margin: 2rem 5% 1.5rem 5%;
  width: 90%;
  border-radius: var(--global-border-radius);
}
body main figure figcaption {
  margin-bottom: 1rem;
  font-style: italic;
}
body main ul.categories {
  width: 100%;
  margin: 1rem auto;
  list-style: none;
  display: flex;
  justify-content: center;
}
body main ul.categories li .category {
  border-radius: var(--global-border-radius);
  padding: 3px 10px;
}
body main ul.categories li a {
  color: #222;
}
body main ul.categories li .news {
  background-color: var(--news-category);
}
body main ul.categories li .tutorials {
  background-color: var(--tutorials-category);
}
body main ul.categories li .showcase {
  background-color: var(--showcase-category);
}
body main .timesection {
  font-size: 1rem;
  width: 100%;
  color: var(--secondary-fg);
  text-align: center;
  font-style: italic;
}
body main .author {
  font-size: 1.5rem;
  text-align: center;
  padding: 1rem 0;
  margin: 1rem 0;
}
body .highlight {
  font-size: 1rem;
  margin: 1rem auto;
  overflow-x: auto;
  line-height: 1.8rem;
  border-radius: var(--global-border-radius);
  color: var(--text-color);
}
body .highlight pre {
  padding: 1rem 0;
  padding-left: 1rem;
  min-width: 100%;
  width: max-content;
}
body .highlight table pre {
  padding-left: 0;
}
body blockquote {
  background-color: rgba(119, 119, 119, 0.2039215686);
  padding: 1rem;
  border-left: var(--global-border-radius) solid var(--primary-fg);
  border-radius: var(--global-border-radius);
  margin: 1rem 0;
}
body footer {
  margin-top: 3rem;
  width: 100%;
  font-family: "Jost", sans-serif;
  padding-top: 1rem;
  text-align: center;
  background-color: var(--secondary-bg);
  position: relative;
}
body footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
body footer nav ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  list-style-type: none;
}
body footer .copyright {
  padding: 0.5rem 0;
  color: var(--copyright-text);
  width: 100%;
  background-color: #222;
}
body footer .copyright a {
  color: #aaa;
  text-decoration: none;
}
body footer .icons {
  padding: 0.5rem;
}
body footer .icons a {
  display: inline-block;
  margin: 1rem;
  color: inherit;
}
body footer #footer-veasel {
  display: none;
  position: absolute;
  bottom: 2.2rem;
  right: 0;
  width: 100px;
  opacity: 0.4;
  pointer-events: none;
}
body code {
  font-family: "JetBrains Mono", monospace;
}
body p > code,
body li > code,
body a > code {
  display: inline-block;
  background-color: var(--secondary-bg);
  font-size: 85%;
  padding: 0 10px;
  border-radius: var(--global-border-radius);
}

@media screen and (max-width: 960px) {
  #desktop-navlinks {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  body #mobile-navlinks {
    display: none;
  }
  body #desktop-navlinks {
    display: flex;
  }
  body #mobile-menu-toggle-button {
    display: none;
    width: 0;
    pointer-events: none;
    opacity: 0;
  }
  body .horizontal {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  body main {
    margin: 0 3rem;
    width: 60%;
  }
  body main p,
  body main ol,
  body main ul,
  body main li {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  body aside {
    width: 20%;
  }
  body footer #footer-veasel {
    display: block;
  }
  body footer nav {
    justify-content: space-between;
  }
  body footer nav ul {
    margin: 0 2rem;
  }
}
@media screen and (min-width: 1600px) {
  main p,
  main ol,
  main ul,
  main li {
    font-size: 1.6rem;
    line-height: 3rem;
  }
}

/*# sourceMappingURL=default.css.map */
