@font-face {
    font-family: "poppins";
    src: url("/assets/fonts/poppins/poppins-regular-webfont.woff2")
        format("woff2"),
      url("/assets/fonts/poppins/poppins-regular-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: "poppins";
    src: url("/assets/fonts/poppins/poppins-bold-webfont.woff2") format("woff2"),
      url("/assets/fonts/poppins/poppins-bold-webfont.woff") format("woff");
    font-weight: bold;
    font-style: normal;
  }
  @font-face {
    font-family: "wendyone";
    src: url("/assets/fonts/wendyone/WendyOne-Regular.woff2")
        format("woff2"),
      url("/assets/fonts/wendyone/WendyOne-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: "inconsolata";
    src: url("/assets/fonts/inconsolata/inconsolata-webfont.woff2")
        format("woff2"),
      url("/assets/fonts/inconsolata/inconsolata-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
  }
  
  :root {
    --body-bg-color: #11131a;
    --font-color: #fff;
    --secondary-bg-color: #11131a;
    --card-bg-color: #14161e;
    --link-mark-color: #FF5A5A;
    --underline-contrast-font-color: #8a8a8a;
    --darkmode-menu-bg-color: #858585;
    --darkmond-menu-active-color: #a8a8a8;
    --showcase-card-hover-shadow-color: rgba(0, 0, 0, 0.6);
    --darkmode-on: display;
    --lightmode-on: none;
    --article-projects-bg-color:  linear-gradient(347deg, rgba(17,19,26,1) 29%, rgba(25,28,38,1) 100%);
    --social-color: invert(0%) sepia(0%) saturate(0%) hue-rotate(324deg) brightness(96%) contrast(104%);
    --mockup-light-off: none;
    }
    .lightmode {
      --body-bg-color: #fbfbfb;
      --font-color: #11131a;
      /* --secondary-bg-color: #f8f8f8; */
      --secondary-bg-color: #fbfbfb;
      --card-bg-color: #fbfbfb;
      --footer-bg-color: #f6f8ff;
      --darkmode-menu-bg-color: rgba(0, 0, 0, 0.093);
      --darkmond-menu-active-color: rgba(0, 0, 0, 0.189);
      --showcase-card-hover-shadow-color: rgba(0, 0, 0, 0.3);
      --darkmode-on: none;
      --lightmode-on: display;
      --article-projects-bg-color: radial-gradient(circle, rgba(255,91,91,0) 0%, rgba(255,91,91,1) 0%, rgba(255,91,91,0.03125) 0%, rgba(250,250,250,0) 100%);
      --social-color: invert(100%) sepia(4%) saturate(15%) hue-rotate(46deg) brightness(103%) contrast(105%);
      --mockup-dark-off: none;
      --mockup-light-off: display;
  }
  
  html {
    font-size: 62.5%;
    scroll-behavior: smooth;
  }
  body {
    background-color: var(--body-bg-color);
    color: var(--font-color);
    font-family: "poppins", Arial, Helvetica, sans-serif;
    font-size: 2rem;
  }
  main {
    margin: 0 1.95rem;
  }
  #main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  section {
    margin: 5.85rem 1.95rem;
  }
  footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
    padding-top: 3px;
    border-top: 1px solid rgba(128, 128, 128, 0.247);
    width: 100%;
    background-color: var(--footer-bg-color);
  }
  .copyright-ttg {
    font-size: 15px;
    color: var(--underline-contrast-font-color);
    font-family: "inconsolata", Arial, Helvetica, sans-serif;
  }
  .social {
    width: 24px;
    height: 24px;
    filter: var(--social-color);
  }
  .social-a:hover {
    filter: invert(58%) sepia(65%) saturate(5195%) hue-rotate(331deg) brightness(108%) contrast(102%);
  }
  .ul-social {
    gap: 20px;
  }
  footer ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    justify-content: center;
  }
  footer ul:first-child {
    margin: 5.85rem 2.85rem 0;
  }
  footer ul:nth-of-type(3) {
    margin-top: 0;
  }
  footer a {
    font-size: 1.5rem;
    color: var(--underline-contrast-font-color);
  }
  
  /* scrollbar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
  }
  ::-webkit-scrollbar-thumb {
    background: #4a4a4c;
    border-radius: 10px;
  }
  
  h1 {
    font-size: 4rem;
    font-family: "poppins", Arial, Helvetica, sans-serif;
    font-weight: normal;
    margin: 2rem 0;
    text-align: center;
  }
  h2 {
    font-size: 3rem;
    font-family: "poppins", Arial, Helvetica, sans-serif;
  }
  h3 {
    font-size: 2rem;
    font-weight: normal;
  }
  p {
    font-family: "poppins", Arial, Helvetica, sans-serif;
  }
  
  a {
    text-decoration: none;
    color: var(--font-color);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  a:hover {
    color: var(--link-mark-color);
  }
  #logo-link:hover {
    color: unset !important;
  }
  mark {
    background-color: transparent;
    color: var(--link-mark-color);
  }

  ::-moz-selection {
    background: #FF5A5A;
    color: #fff;
  }
	::selection {
    background: #FF5A5A;
    color: #fff;
  }

  .p-style {
    line-height: 3.5rem;
  }
  
  .skip-link {
    z-index: 999;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--secondary-bg-color);
    color: var(--font-color);
    text-align: center;
    padding: 0.5rem;
    transform: translate(0, -100%);
    transition: 200ms;
  }
  .skip-link:focus {
    transform: translate(0);
    color: var(--font-color);
  }
  
  .navbar-desktop {
    display: none;
  }
  .navbar-mobile {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .navbar-mobile a:link,
  .navbar-mobile a:active,
  .navbar-mobile a:visited,
  .navbar-mobile a:hover,
  .navbar-mobile a:focus {
    color: white;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  
  .darkmode-btn-toggle-mobile:active,
  .darkmode-btn-toggle-mobile:focus {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  
  .navbar-mobile-items {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .navbar-mobile-items li {
    flex: 1;
  }
  .home-icon-fill,
  .home-icon-outline,
  .folder-icon-fill,
  .folder-icon-outline,
  .darkmode-icon-mobile {
    width: 2.4rem;
    color: white;
    margin-top: 0.5rem;
  }
  
  .lightmode-icon-mobile {
    display: none;
  }
  .darkmode-icon-mobile-display-none {
    display: none;
  }
  .lightmode-icon-mobile-display {
    display: initial;
  }
  
  .home-icon-link,
  .folder-icon-link,
  .darkmode-btn-toggle-mobile {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .darkmode-btn-toggle-mobile {
    border: none;
    cursor: pointer;
    background-color: transparent;
    color: white;
    padding: 0;
    width: 100%;
  }
  
  .home-icon-link::after {
    content: "Home";
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .folder-icon-link::after {
    content: "Projekte";
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .darkmode-btn-toggle-mobile::after {
    content: "Theme";
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .footer-li {
    margin-right: 10px;
  }
  .darkmode-on {
    display: var(--darkmode-on);
 }
 .lightmode-on {
     display: var(--lightmode-on);
  }
  
  /* @media screen and (min-width: 1200px){} Desktop
  @media screen and (min-width: 1025px) and (max-width: 1199px){} small laptop
  @media screen and (min-width: 768px) and (max-width: 1024px){} tablet
  @media screen and (min-width: 575px) and (max-width: 767.98px){} tablet and large mobiles
  @media screen and (min-width: 320px) and (max-width: 480px){} Mobile */
  
  /* tablet and large mobiles */
  @media screen and (min-width: 575px) {
    html {
      font-size: 63%;
    }
  }
  
  /* tablet */
  @media screen and (min-width: 768px) {
    html {
      font-size: 65%;
    }
  }
  
  /* navbar breakpoint ***************************************************************************************** */
  /* small laptop */
  @media screen and (min-width: 1024px) {
    .navbar-mobile {
      display: none;
    }
  
    .navbar-desktop {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      top: 0;
      position: fixed;
      width: 100%;
      background-color: var(--body-bg-color);
    }
    .brand,
    .navbar-desktop-items {
      display: flex;
      list-style: none;
      align-items: center;
      margin: 0;
      padding: 0;
    }
  
    .brand {
      gap: 12px;
      padding-left: 40px;
    }
    .brand > a {
      padding: 0;

    }
    .brand li:first-child {
     text-transform: uppercase;
      font-size: 2.5rem;
      font-family: "wendyone", Arial, Helvetica, sans-serif;
      color: #FF5A5A;
    }
    .brand li:last-child {
        text-transform: uppercase;
      font-size: 1.5rem;
      font-weight: bold;
      font-family: "poppins", Arial, Helvetica, sans-serif;
      color: var(--li-logo-games-color);
    }
  
    .navbar-desktop-items {
      justify-content: flex-end;
      gap: 30px;
      padding-right: 20px;
    }
    .darkmode-icon-desktop {
      width: 2.4rem;
      fill: var(--font-color);
      margin-top: 0.5rem;
    }
  
    /* transition */
    .navbar-desktop-home a,
    .navbar-desktop-projects a {
      transition: 0.2s ease-in-out;
      border-bottom: 2px solid transparent;
    }
    .navbar-desktop-home a:hover,
    .navbar-desktop-projects a:hover {
      border-color: var(--font-color);
      color: var(--font-color);
    }

    .brand-noselect {
      /*-webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;*/
    }
    #darkmode-btn-menu {
      background-color: transparent;
      border: transparent;
      margin-top: 5px;
    }
    #darkmode-btn-menu:hover {
      background-color: var(--darkmode-menu-bg-color);
      border-radius: 5px;
      cursor: pointer;
    }
    #darkmode-btn-menu:active {
      background-color: var(--darkmond-menu-active-color);
    }
    #darkmode-btn-menu:focus {
      background-color: var(--darkmond-menu-active-color);
      border-radius: 5px;
    }
  
    /* darkmode menu open */
    .darkmode-menu-open {
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: absolute;
      background-color: rgb(25, 27, 37);
      border: 1px solid grey;
      border-radius: 5px;
      background-color: var(--secondary-bg-color);
      right: 1.5rem;
      margin-top: 1rem;
      padding: 5px;
      gap: 1px;
      list-style-type: none;
    }
  
    .darkmode-btn,
    .lightmode-btn {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      gap: 7px;
      margin: 0;
      padding: 0;
      color: var(--font-color);
      background-color: transparent;
      border: none;
      cursor: pointer;
      padding: 5px;
    }
    .darkmode-btn:hover,
    .lightmode-btn:hover {
      background-color: var(--darkmode-menu-bg-color);
      border-radius: 5px;
    }
    .lightmode-btn:active,
    .darkmode-btn:active,
    .lightmode-btn:focus,
    .darkmode-btn:focus {
      background-color: var(--darkmond-menu-active-color);
      border-radius: 5px;
    }
    .selected-btn {
      background-color: var(--darkmode-menu-bg-color);
      border-radius: 5px;
    }
    .darkmode-btn svg,
    .lightmode-btn svg {
      margin: 0;
    }
    .lightmode-icon-desktop-mask {
      -webkit-mask-image: url(/assets/icons/light-mode.svg);
    }
    .darkmode-icon-desktop-mask {
      -webkit-mask-image: url(/assets/icons/dark-mode.svg);
    }
    .lightmode-icon-desktop-mask,
    .darkmode-icon-desktop-mask {
      width: 24.95px;
      height: 24.95px;
      fill: var(--font-color);
      background-color: var(--font-color);
      -webkit-mask-repeat: no-repeat;
    }
    /* ******************************************** */
    section,
    main {
      margin: 0 10rem;
      padding: 6.3438rem 0;
    }
    h1 {
      font-size: 340%;
    }
    h2 {
      font-size: 200%;
    }
    footer {
      padding: 2rem 0;
      flex-direction: row;
      justify-content: space-between;
    }
    footer ul {
      margin: 0;
    }
    .copyright-ttg {
      margin-right: 50px;
    }
    .social_x {
      margin-left: 50px;
    }
    .social_insta {
      margin-left: 22px;
    }
    footer ul:first-child {
      margin: 0;
    }
    footer ul:nth-of-type(3) {
      margin: 0;
    }
  }
  
  /* smaller Desktop */
  @media screen and (min-width: 1200px) {
    section {
      margin: 6.3438rem 20rem;
    }
    main {
      margin: 0 20rem;
      padding: 6.3438rem 0;
    }
    
  }
  
  /* Desktop */
  @media screen and (min-width: 1700px) {
    section {
      margin: 6.3438rem 30rem;
    }
    main {
      margin: 0 30rem;
    }
  }
  