/* Markdown */
:root{
--theme: #EEEEEE;
--primary: #222831;
--secondary: #393E46;
--tertiary: #00ADB5;
}

html {
  background: var(--theme);
  color: var(--primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 18px;
  line-height: 1.6em;
}

body {
  display: block;
  margin: 8px;
}


* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

p {
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.body a {
  border-bottom: 1px solid var(--secondary);
}

.raw-html a {
  border-bottom: 0px;
}


/* Containers */
.content {
  margin-bottom: 4em;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  padding: 0 1ch;
  word-wrap: break-word;
}

/* Header */
header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 1em 0;
  line-height: 2.5em;
}

.center {
  text-align: center;
}

h2, h3, h4, h5, h6 {
  margin: 0px;
}

.body h2, h3, h4, h5, h6 {
  margin: 12px 0px;
}

/* NavBar */
.navbar a {
  font-size: 16px;
  text-decoration: none;
  margin-right: 10px;
}

.navbar .active {
  font-weight: 500;
  border-bottom: 2px solid currentColor;
}

.navbar {
  align-self: center;
}


/* Footer */
footer {
  max-width: calc(var(--main-width) + var(--gap) * 2);
  margin-top: 2rem;
  padding: calc((var(--footer-height) - var(--gap)) / 2) var(--gap);
  text-align: center;
  line-height: 24px;
}



.footer a {
  color: inherit;
  border-bottom: 1px solid var(--secondary);
}

.footer a:hover {
  border-bottom: 1px solid var(--primary);
}


/* Icons */
.social-icons {
  padding: 24px 0 0 0;
}

.social-icons a:not(:last-of-type) {
  margin-inline-end: 12px;
}

.social-icons a svg {
  height: 26px;
  width: 26px;
}

/* Homepage */

.avatar {
  margin-top: 24px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  box-shadow: 0px 0px 30px var(--primary);
  /*box-shadow: 0 0 0 2px rgba(255 255 55 1.0);*/



}

.title h1 {
  font-size: 44px;
  line-height: 1.3;
}

.body {
  font-size: 25px;
  line-height: 1.5;
}

.not-found {
  text-align: center;
  margin: 10em 0;
}
