:root {
  --background-color: #121212;
  --text-color: #f0f0f0;
  --header-background: #1e1e1e;
  --header-text: #fff;
  --link-color: #fff;
  --accent-color-1: #fc0;
  --link-hover-text: #000;
  --background: #333;
  --link: #ddd;
  --link-active: #ffd83b;
  --info-bg-color: #045672c2;
  --info-text-color: #ddd;
}

body.earth-mode {
  --background-color: #f8f5e9;
  --text-color: #3c2f2f;
  --header-background: #efe4d4;
  --header-text: #3c2f2f;
  --link-color: #8a6d3b;
  --link-hover-text: #fff;
  --background: #f6f2e5;
  --link: #a47b51;
  --accent-color-1: #c69f7c;
  --link-active: #b5835a;
  --info-bg-color: #856341;
  --info-text-color: #f3eee9;
}

body.bee-mode {
  --background-color: #121212;
  --text-color: #f0f0f0;
  --header-background: #1e1e1e;
  --header-text: #fff;
  --link-color: #fff;
  --accent-color-1: #fc0;
  --link-hover-text: #000;
  --background: #333;
  --link: #ddd;
  --link-active: #ffd83b;
  --table-background: #10384dc2;
  --info-bg-color: #fc0;
  --info-text-color: #000;
}

body.light-mode {
  --background-color: #fff;
  --text-color: #333;
  --header-background: #f7f7f7;
  --header-text: #222;
  --link-color: #555;
  --link-hover-text: #fff;
  --background: #f9f9f9;
  --link: #1c1212;
  --accent-color-1: #000;
  --link-active: #bbb;
  --table-background: #fcfcfc;
  --info-bg-color: #f3f3f3;
  --info-text-color: #000;
}

body.dark-mode {
  --background-color: #161616;
  --text-color: #e0e0e0;
  --header-background: #2a2a2a;
  --header-text: #f5f5f5;
  --link-color: #a8a8a8;
  --link-hover-text: #000;
  --background: #121212;
  --link: silver;
  --accent-color-1: #fff;
  --link-active: #9d9c9c;
  --table-background: #000000c2;
  --info-bg-color: #332a45;
  --info-text-color: #fff;
}

body.ocean-mode {
  --background-color: #0a1c2b;
  --text-color: #c6d0e3;
  --header-background: #1e2d3b;
  --header-text: #fff;
  --link-color: #66b3b7;
  --link-hover-text: #fff;
  --background: #03111c;
  --link: #87c1c5;
  --accent-color-1: #4e89b3;
  --link-active: #50a2a7;
  --table-background: #0009;
  --info-bg-color: #2c3e50;
  --info-text-color: #fff;
}

body.bubble-mode {
  --background-color: #ffd3f4;
  --text-color: #580a46;
  --header-background: #ff98ee;
  --header-text: #661961;
  --link-color: #96036a;
  --link-hover-text: #ffebfa;
  --background: #ffb5f1;
  --link: #752468;
  --accent-color-1: #f0d;
  --link-active: #e65ca5;
  --table-background: #87ceeb33;
  --info-bg-color: #f7b0eb;
  --info-text-color: #41073c;
}

html {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--background-color);
  min-height: 100vh;
  color: var(--text-color);
  flex-direction: column;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  display: none;
  overflow: hidden;
}

body.is-loaded {
  display: flex;
}

header {
  background-color: var(--header-background);
  height: 100px;
  color: var(--header-text);
  z-index: 1000;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  display: flex;
  position: sticky;
  top: 0;
}

.logo {
  position: absolute;
  left: 20px;
}

.logo img {
  height: auto;
  max-height: 100px;
}

.hidden {
  display: none;
}

#hamburger-menu-button {
  color: var(--header-text);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 24px;
}

#hamburger-menu {
  background-color: var(--header-background);
  border: 1px solid var(--header-text);
  border-radius: 5px;
  min-width: 200px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top: 80px;
  right: 20px;
  box-shadow: 0 4px 8px #0003;
}

.submenu-items {
  background-color: var(--header-background);
  border-radius: 5px;
  min-width: 200px;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0 4px 8px #0003;
}

#hamburger-menu, #hamburger-menu ul, #hamburger-menu li {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

#hamburger-menu li {
  position: relative;
}

#hamburger-menu a {
  color: var(--header-text);
  white-space: nowrap;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
}

#hamburger-menu a:hover {
  background-color: var(--accent-color-1);
  color: var(--link-hover-text);
}

.submenu:hover .submenu-items {
  display: block;
}

#hamburger-menu a[data-theme].selected:after {
  content: "";
  color: green;
  margin-left: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

nav#topmenu {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

nav ul {
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

nav li {
  position: relative;
}

nav .topmenu-link {
  color: var(--link-color);
  padding: 10px 20px;
  text-decoration: none;
  display: block;
}

nav .topmenu-link:hover {
  background-color: var(--accent-color-1);
  color: var(--link-hover-text);
  border-radius: 5px;
}

nav .submenu {
  background-color: var(--background);
  z-index: 100;
  min-width: 150px;
  max-height: calc(100vh - 100px);
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  overflow-y: auto;
  box-shadow: 0 4px 8px #00000080;
}

nav li:hover > .submenu {
  display: block;
}

nav .submenu a {
  color: var(--link);
  padding: 8px 15px;
  line-height: normal;
}

nav .submenu a:hover {
  background-color: var(--accent-color-1);
  color: var(--link-hover-text);
}

nav .topmenu-link.active {
  background-color: var(--link-active);
  color: var(--link-hover-text);
  border-radius: 5px;
}

#left-menu {
  z-index: 1000;
  box-sizing: border-box;
  background-color: var(--header-background);
  border-right: 1px solid var(--link);
  width: 240px;
  height: calc(100vh - 100px);
  padding: 30px 10px;
  transition: transform .3s;
  position: fixed;
  top: 100px;
  overflow-y: auto;
  transform: translateX(-240px);
}

#left-menu.active {
  transform: translateX(0);
}

#left-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#left-menu a {
  color: var(--text-color);
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

#left-menu a:hover {
  background-color: var(--background);
  border-radius: 3px;
}

#left-menu .menu-level-0 {
  color: var(--accent-color-1);
  margin-bottom: 10px;
  padding: 12px 15px;
  font-size: 18px;
  font-weight: bold;
  display: block;
}

#left-menu .menu-level-1 {
  color: var(--link);
  border-top: 1px solid #ffffff3c;
  margin-top: 15px;
  padding-top: 30px;
  padding-bottom: 5px;
  padding-left: 20px;
  font-size: 16px;
  font-weight: bold;
}

#left-menu .menu-level-1:hover {
  background-color: var(--accent-color-1);
  color: var(--link-hover-text);
}

#left-menu .menu-level-2 {
  border: none;
  margin-left: 20px;
  padding-left: 20px;
  font-size: 14px;
}

#left-menu .menu-level-2:hover {
  background-color: var(--accent-color-1);
  color: var(--link-hover-text);
}

#left-menu .active {
  background-color: var(--link-active);
  color: var(--link-hover-text);
}

main {
  background-color: var(--background-color);
  max-height: calc(100vh - 80px);
  color: var(--text-color);
  flex: 1;
  margin-left: 260px;
  overflow-y: auto;
}

section {
  max-width: 800px;
  margin: 0 auto;
  animation: 2s fadeIn;
  display: none;
}

section.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.spinner-container {
  width: 100%;
  height: 100px;
  position: relative;
}

.spin {
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spin:after {
  content: "";
  border: 5px solid var(--text-color);
  border-color: var(--text-color) transparent var(--text-color) transparent;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: 2px;
  animation: 1.2s linear infinite dual-spin;
  display: block;
}

@keyframes dual-spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

section#home {
  background-color: var(--background-color);
  max-width: 800px;
  color: var(--text-color);
  margin: 20px auto;
  padding: 20px;
}

section#home a {
  color: var(--accent-color-1);
  text-decoration: none;
}

section#home h1 {
  color: var(--accent-color-1);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: monospace;
  font-size: 1.8em;
  font-weight: bold;
}

section#home h2 {
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: monospace;
  font-size: 1.5em;
  font-weight: bold;
}

section#home p {
  color: var(--text-color);
  font-family: monospace;
  font-size: 1.1rem;
}

img.home {
  object-fit: cover;
  border: 3px solid var(--accent-color-1);
  border-radius: 15px;
  width: 400px;
  height: 400px;
  margin: 50px auto 0 100px;
  display: block;
}

section#home #github-calendar {
  margin-top: 20px;
}

section#home #activities {
  margin-top: 80px;
}

section#home #activities h2 {
  margin-top: 20px;
}

#github-calendar .contrib-column, #github-calendar .float-left {
  display: none !important;
}

section#profile {
  background-color: var(--background-color);
  max-width: 800px;
  color: var(--text-color);
  margin: 20px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

section#profile .cv-header {
  text-align: center;
  background-color: var(--header-background);
  color: var(--header-text);
  border-bottom: 1px solid var(--link);
  border-radius: 8px 8px 0 0;
  padding: 20px;
}

section#profile #cv-header h1 {
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--accent-color-1), var(--link-active));
  -webkit-text-fill-color: transparent;
  border-bottom: 2px solid var(--link-active);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 4em;
  font-weight: 700;
}

section#profile h2 {
  color: var(--accent-color-1);
  border-bottom: 2px solid var(--link);
  font-size: 2.5em;
  font-weight: bold;
}

section#profile h3 {
  color: var(--text-color);
  font-size: 2em;
  font-weight: bold;
}

section#profile h4 {
  color: var(--link);
  font-size: 1.5em;
  font-weight: bold;
}

section#profile p {
  color: var(--text-color);
  font-size: 1.2em;
  line-height: 1.8;
}

section#profile ul {
  list-style: none;
}

section#profile ul li {
  margin-bottom: 10px;
}

section#profile ul li.spaced-item {
  margin-bottom: 20px;
}

section#profile ul li strong {
  color: var(--accent-color-1);
}

section#profile a {
  color: var(--accent-color-1);
  text-decoration: none;
}

section#profile a:hover {
  text-decoration: underline;
}

section#profile div#cv-experience ul li {
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  display: flex;
}

section#profile div#cv-experience img.experience-image {
  border-radius: 5px;
  flex-shrink: 0;
  width: 60px;
  height: auto;
}

section#profile div#cv-experience .experience-content {
  flex-direction: column;
  flex: 1;
  margin-bottom: 20px;
  display: flex;
}

section#profile div#cv-experience ul li strong {
  margin-bottom: 12px;
  font-size: 1.2em;
  font-weight: bold;
}

section#profile div#cv-experience .job-info {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  display: flex;
}

section#profile div#cv-experience .job-info .job-title {
  font-size: 1em;
  font-weight: bold;
}

section#profile div#cv-experience .job-info .date {
  color: var(--link);
  font-size: .9em;
}

section#profile div#cv-experience p {
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: .9em;
  line-height: 1.6;
}

section#profile .cv-education ul {
  padding: 0;
  list-style: none;
}

section#profile .cv-education ul li {
  padding-right: 120px;
  position: relative;
}

section#profile .cv-education ul li .date {
  color: gray;
  font-size: .9em;
  position: absolute;
  top: 0;
  right: 0;
}

section#profile .cv-languages ul {
  padding: 0;
  list-style: none;
}

section#profile .cv-languages ul li {
  grid-template-columns: 80px auto;
  align-items: center;
  margin-bottom: 15px;
  display: grid;
}

section#profile .cv-languages ul li img {
  width: 90px;
  height: auto;
}

section#profile .cv-hobbies ul {
  margin: 20px;
  padding: 0;
}

section#profile .cv-skills {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
  display: grid;
}

section#profile .cv-skills h2 {
  grid-column: span 2;
  margin-bottom: 20px;
}

section#profile .cv-skills ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

section#profile .cv-skills ul li {
  grid-template-columns: 150px auto;
  align-items: center;
  gap: 15px;
  margin: 0;
  display: grid;
}

section#profile .cv-skills ul li strong {
  margin-bottom: 15px;
}

section#profile .cv-skills ul li img {
  width: 80px;
}

section#javascript {
  background-color: var(--background-color);
  max-width: 800px;
  color: var(--text-color);
  margin: 20px auto;
  padding: 20px;
}

section#javascript .level1-container {
  margin-bottom: 250px;
}

section#javascript .smallspacer {
  margin-bottom: 40px;
}

section#javascript h1 {
  text-transform: uppercase;
  color: var(--text-color);
  background: none;
  background-clip: initial;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  border-bottom: 2px solid var(--link-active);
  font-size: 4em;
  font-weight: 700;
}

section#javascript h2 {
  color: var(--accent-color-1);
  margin-top: 60px;
  margin-bottom: 30px;
  font-size: 2em;
  font-weight: bold;
}

section#javascript h3 {
  color: var(--text-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.3em;
  font-weight: bold;
}

section#javascript h4 {
  color: var(--accent-color-1);
  margin-bottom: 5px;
  font-size: 1.05em;
  font-weight: bold;
}

section#javascript .image-container {
  background-color: var(--header-background);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
}

section#javascript .image-container img {
  border: 4px solid var(--link);
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 12px #00000080;
}

section#javascript div.extra-info {
  background: var(--info-bg-color);
  color: var(--info-text-color);
  border-radius: 5px;
  margin-bottom: 12px;
  padding: 10px 10px 10px 15px;
  font-size: 1rem;
  line-height: 1.6;
}

section#javascript div.info {
  background: var(--info-bg-color);
  color: var(--info-text-color);
  border-radius: 5px;
  margin-bottom: 12px;
  padding: 30px;
  font-size: 1rem;
  line-height: 1.6;
}

section#javascript div.info ul {
  margin: 10px 0;
  padding-left: 20px;
  list-style-type: disc;
}

section#javascript table {
  text-align: center;
  table-layout: fixed;
  width: 100%;
  color: var(--);
  background: var(--header-background);
  border-radius: 8px;
  margin: 20px 0;
  font-family: Fira Code, Consolas, Monaco, Andale Mono, Ubuntu Mono, monospace;
  font-size: 14px;
  line-height: 1.6;
  overflow: hidden;
  box-shadow: 0 4px 8px #0003;
}

section#javascript thead th {
  text-transform: uppercase;
  background: var(--header-background);
  color: var(--header-text);
  border-bottom: 2px solid var(--link);
  padding: 12px;
  font-size: 1.1rem;
  font-weight: bold;
}

section#javascript tbody tr {
  background: var(--table-background);
  border-bottom: 1px solid var(--link);
}

section#javascript tbody td {
  padding: 12px;
}

section#javascript tbody td:first-child, section#javascript thead th:first-child {
  background: var(--header-background);
}

section#javascript table .checkmark {
  color: green;
  font-size: 1.4rem;
}

section#javascript table .cross {
  color: red;
  font-size: 1.1rem;
}

section#javascript a {
  color: var(--accent-color-1);
  text-decoration: none;
}

section#javascript img.responsive-gif {
  max-width: 100%;
  height: auto;
}

section#javascript table.glossary-table th:first-child, section#javascript table.glossary-table td:first-child {
  width: 30%;
}

section#javascript table.glossary-table td:last-child {
  text-align: left;
  padding-left: 30px;
}

section#javascript table.glossary-table th:last-child, section#javascript table.glossary-table td:last-child {
  width: 70%;
}
/*# sourceMappingURL=index.78b5b27d.css.map */
