:root {
  --easeOutQuint: cubic-bezier(0.22, 1, 0.36, 1);
}

.dark-mode {
  /* --background: #0a0a0a; */
  --background: #13151b;
  --foreground: #f1f1f1;

  --background-secondary: #282d3d;
  --background-tertiary: #333a4e;
  --foreground-outside-line: #70778a;

  --foreground-section-color: #1d212c;

  --link: #9A8973;
}

.light-mode {
  --background: #c4c7d8;
  --foreground: #171717;

  --background-secondary: #a4a6b4;
  --background-tertiary: #abafc4;
  --foreground-outside-line: #444853;

  --foreground-section-color: #b6bad1;

  --link: #8f6021;
}

html,
body {
  max-width: 100vw;
  max-height: 100vh;
  overflow: hidden;
  font-size: 20px;
}

body {
  color: var(--foreground);
  background: var(--background);
  font-family: Poppins,sans-serif, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--link);
  text-decoration: none;
}



.v-box {
  display: flex;
  flex-flow: column;
  height: 100%;
}

.h-box {
  display: flex;
  flex-flow: row;
  width: 100%;
}

.flex-center {
  /* justify-content: center;
  align-items: center; */

  margin: auto;
}

.v-flex {
  display: flex;
  flex-flow: column;
}

.h-flex {
  display: flex;
  flex-flow: row;
}

.v-flex-center {
  display: flex;
  flex-flow: column;

  /* justify-content: center;
  align-items: center; */
  margin: 0 auto;
}

.h-flex-center {
  display: flex;
  flex-flow: row;

  /* justify-content: center;
  align-items: center; */
  margin: 0 auto;
}

.sized-content {
  flex: 0 1 auto;
}

.sized-remaining {
  flex: 1 1 auto;
}

.sized-fixed {
  flex: 0 1 var(--fixed-size);
}


.main-body-scroll {
  width: 100%;
  margin: 0 auto;
  overflow: auto;
  padding: 10px;
}

.main-body-div {
max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.main-header {
  /* position: absolute;
  top: 0;
  gap: 10px; */
}

.header-btn {
  border: 0px;
  background-color: transparent;
  padding: 10px;
  font-weight: bold;
  font-size: medium;
}



.footer {
  grid-row-start: 3;
  display: flex;
  gap: 24px;
}

.footer a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer img {
  flex-shrink: 0;
}

.icon-default-filter {
  /*filter: invert(79%) sepia(14%) saturate(184%) hue-rotate(359deg) brightness(87%) contrast(86%);*/
  filter:invert();
}

/* Enable hover only on non-touch devices */
@media (hover: hover) and (pointer: fine) {
  .footer a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

@media (max-width: 600px) {
  .footer {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}

button {
  cursor: pointer;
  color: var(--foreground)
}

.fade-in-element {
  opacity: 0;
  transform: translateX(-100px);
  visibility: hidden;
  transition: opacity 0.45s var(--easeOutQuint), transform 0.45s  var(--easeOutQuint);
  will-change: opacity, visibility;
}

.fade-in-element.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.stretch-element {
  align-self: stretch;  
}


/* ----------------------- ROOT ----------------------- */

.main-head-welcome {
  font-weight: bold;
  font-size: xx-large;
}

.main-head-paragraph {
  border-radius: 30px;
  padding: 40px;
  margin-top: 60px;
  /* font-size: medium; */
  max-width: 800px;
  text-align: justify;
  background-color: var(--foreground-section-color);
}

.layout-icon {
  width: 20px;
}

.line-splitter span {
  min-height: 10px;
}

/* -------------------- LINK TREE -------------------- */

.link-tree-main-page {
  gap: 50px;
}

.link-tree-container {
  gap: 20px;
  align-items: flex-start;
}

.link-tree-link {
  gap: 10px;
}

.main-head-container {
  gap: 20px;
  /* margin-bottom: 500px; */
}

.main-head-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
}

.main-page-container {
  position: relative;
  margin-bottom: 400px;
  /* gap: 700px; */
  gap: 80px;
}

.section-spacer-container{
  border-radius: 30px;
  padding: 40px;
  background-color: var(--foreground-section-color);
  /* min-height: 150vh; */
  position: relative;
  margin: 0;
}

.section-main-container {
  max-width: 1100px;
  gap: 20px;
  margin: 0;
}

.section-title {
  font-weight: bold;
  font-size: 40px;
}

.outside-line-container {
  /* height: 400px; */
  position: relative;
  align-items: center;
}

.outside-line-circle {
  position: absolute;

  border-radius: 50%;
  border: 2px solid #70778a;
  background-color: var(--background);

  width: 10px;
  height: 10px;
}

.section-line {
  position: absolute;
  border-left: 2px dashed #70778a;
  /* height: 400px; */
}


.section-line-external-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid #70778a;
  background-color: transparent;
  display: inline-block;
  content: "";
  
  width: 20px;
  height: 20px;
}

.section-upwards-line {
  top: 0;
}

.section-downwards-line {
  top: 50%
}

.experience-section-container {
  gap: 25px;
}

.job-description-container {
  max-width: 900px;
  gap: 10px;
}

.job-description-line-container {
  gap: 5px;
  margin: 0;
}

.job-description-circle {
  border-radius: 50%;
  background-color: var(--foreground);
  width: 15px;
  height: 15px;
}

.job-description-line {
  border-radius: 2px;
  background-color: var(--foreground);
  width: 5px;
  height: 1px;
  margin: auto;
}

.job-description-main {
  gap: 10px; 
}

.job-description-metadata {
  gap: 2px;
}

.job-description-title {
  font-weight: bold;
  font-size: large;
}

.job-description-company {
  font-style: italic;
  font-size: small;
}

.job-description-date {
  font-style: italic;
  font-size: small;
  opacity: 70%;
}

.job-description-location {
  font-style: italic;
  font-size: small;
  opacity: 70%;
}

.projects-main-container {
  gap: 60px;
}

.project-header-container {
  gap: 5px;
}

.projects-projects-container {
  gap: 10px;
}

.project-container {
  background-color: var(--background-secondary);
  padding: 20px;
  border-radius: 10px;
  gap: 5px;
  align-self: stretch;
  max-width: 800px;
  width: 100%;
}

/* .project-container span {
  color: white;
} */

.project-name {
  font-weight: bold;
  font-size: large;
}

.project-link {
  width: 10px;
}

.project-description {
  
}

.project-description span {
  min-height: 10px;
  /* white-space: pre; */
}

.project-image {
  max-width: 900px;
}

.text-section {
  max-width: 800px;
  text-align: justify;
}

.contacts-text-section {
  
}

.support-me-btn-area {
  padding: 10px;
  gap: 10px;
}

.support-me-btn {
  border-radius: 10px;
  /* background-color: #0e0e0e; */
  background-color: var(--background-tertiary);
  padding: 10px;
  gap: 10px;
}
