html {
    background-color: rgb(15, 80, 15);
    font-family: 'VT323', monospace;
    color: rgb(72, 255, 0);
    text-shadow:
    2px 0px 2px rgb(226, 14, 14),
    -2px 0px 2px rgb(26, 118, 194),
    0 0 12px rgba(114, 255, 0, 0.6),
    0 0 20px rgba(114, 255, 0, 0.4);
  }

  /* Background scan line animation */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(114,255,0,0.08) 48%,
      rgba(114,255,0,0.1) 50%,
      rgba(114,255,0,0.08) 52%,
      transparent 100%
    );
    filter: blur(1px);
    animation: scan 4s linear infinite;
    opacity: 0.35;
  }

  body {
    margin: 0;
    animation: flicker 0.08s infinite;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
  }

  /* Backgroud CRT Lines */
  body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
      repeating-linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0px,
        rgba(0, 0, 0, 0.2) 1px,
        transparent 2px,
        transparent 4px
      );
    mix-blend-mode: overlay;
    filter: blur(0.3px);
  }

  /* Website Skeleton */
  .headerbox {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 20px auto;
    width: 90vw;
    height: 8vh;
    border: 2px solid rgb(72, 255, 0);
    flex: 0 0 auto;
    box-shadow: 
    1px 0px 1px rgb(226, 14, 14),
    -1px 0px 1px rgb(26, 118, 194),
    0px 0px 6px rgb(9, 244, 45),
    inset 0px 0px 6px rgb(9, 244, 45);
  }
  .headermenu {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(72, 255, 0);
    text-decoration: none;
    font-size: 1.7rem;
    border: 2px solid rgb(72, 255, 0);
    width: 15vw;
    height: 5vh;
    clip-path: inset(8px 0px 8px 0px);
    box-shadow:
    inset 0px 0px 6px rgb(9, 244, 45);
  }

  .headermenu:hover {
    background-color: rgba(0, 128, 0, 0.597);
  }

  .contentBox {
  display: flex;
  align-items: flex-start;
  width: 90vw;
  flex: 1 1 auto;
  min-height: 0;
  margin: 0 auto 20px auto;
  border: 2px solid rgb(72, 255, 0);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgb(72, 255, 0) rgba(0, 0, 0, 0.3);
  box-shadow: 
  1px 0px 1px rgb(226, 14, 14),
  -1px 0px 1px rgb(26, 118, 194),
  0px 0px 6px rgb(9, 244, 45),
  inset 0px 0px 6px rgb(9, 244, 45);
  }

  .mainContent {
    display: flex;
    width: 100%;
    font-size: 1.3rem;
    line-height: 1.1rem;
    margin-left: 20px;
    min-width: 0;
    align-items: flex-start;
  }

  .contentBox a {
    color: rgb(17, 255, 0);
  }

  /* "Terminal Typing" Animation (Reveal) */
  .revealBox {
    width: 100%;
    overflow: hidden;
    max-height: 0;
    animation: reveal 5s steps(500) forwards;
    align-self: flex-start;
  }

  /* Home */

  .homerocketImage {
    margin-left: 50px;
    padding: 5px;
    filter: drop-shadow(0 0 6px rgb(9, 244, 45));
    animation: glowPulse 1s infinite alternate;
  }

  .homeklixaLogo {
    position: relative;
    bottom: 2px;
    vertical-align: middle;
    filter:
    drop-shadow(1px 0 0 rgb(226, 14, 14))
    drop-shadow(-1px 0 0 rgb(26, 118, 194))
    drop-shadow(0 0 6px rgb(9, 244, 45));
    opacity: 0.95;
  }

  /* Scrollbar */

  .contentBox::-webkit-scrollbar {
    width: 10px;
  }

  .contentBox::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
  }

  .contentBox::-webkit-scrollbar-thumb {
    background: rgb(63, 207, 6);
    box-shadow:
    0 0 4px rgb(9, 244, 45),
    0 0 8px rgb(9, 244, 45);
  }

  .contentBox::-webkit-scrollbar-thumb:hover {
    background: rgb(114, 255, 0);
  }

  /* About me */

  .abmpersonalInfos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100vh;
    gap: 20px;
    flex: 0 0 auto;
    margin-left: auto;
    border-left: 4px solid rgb(72, 255, 0);
    padding-left: 20px;
    margin-right: 10px;
    box-shadow:
    inset 1px 0px 1px rgb(226, 14, 14),
    -1px 0px 1px rgb(26, 118, 194),
    0px 0px 6px rgb(9, 244, 45),
    inset 0px 0px 6px rgb(9, 244, 45);
   
  }

  .abmtextContent {
    flex: 1 1 auto;
  }

  .abmmyImage {
    width: 290px;
    height: auto;
    display: block;
    margin: 20px 5px 0 0;
    filter:
    drop-shadow(1px 0 0 rgb(226, 14, 14))
    drop-shadow(-1px 0 0 rgb(26, 118, 194))
    drop-shadow(0 0 6px rgb(9, 244, 45));
  }

  .abmimageText {
    line-height: 1.3rem;
  }

  .abmtopRow {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
  }

  .abmsatelite {
    order: 3;
    flex-basis: 100%;
    align-self: flex-start;
    margin-top: 10px;
    filter:
    drop-shadow(1px 0 0 rgb(226, 14, 14))
    drop-shadow(-1px 0 0 rgb(26, 118, 194))
    drop-shadow(0 0 6px rgb(9, 244, 45));
    animation: glowPulse 1s infinite alternate;
  }

  /* 3D Modeling */

  .dddWrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    }
    
  .dddmediaContent {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: flex-start;
    width: 99%;
    min-height: 60vh;
    padding: 5px;
    box-sizing: border-box;
    gap: 10px;
  }
  
  .dddimageContainer {
    box-sizing: border-box;
    width: 300px;
    height: 170px;
    margin: 5px;
    border: 2px solid rgb(72, 255, 0);
    filter:
    drop-shadow(1px 0 0 rgb(226, 14, 14))
    drop-shadow(-1px 0 0 rgb(26, 118, 194))
    drop-shadow(0 0 6px rgb(9, 244, 45));
  }
  
  .dddimageContainer img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .dddtextContent {
    display: flex;
    justify-content: center;
    padding: 5px;
    width: 99%;
    min-height: 40vh;
    box-sizing: border-box;
    gap: 20px;
    overflow: hidden;
  }

  .dddintroText {
    padding: 5px;
    width: 40vw;
  }

  .dddsoftwareText {
    position: relative;
    left: 10vw;
    padding: 5px;
    width: 40vw;
  }

  /* Lebenslauf */

  .cvtext {
    width: 97%;
  }

  .cvtext hr {
    border: none;
    height: 2px;
    background: rgb(72, 255, 0);
    box-shadow: 0 0 6px rgb(9, 244, 45);
  }

  .cvtext h2 {
    background-color: green;
    height: 50px;
  }

  .cvsectionHeader {
  background: rgba(72, 255, 0, 0.12);
  padding: 6px 10px;
  border-top: 1px solid rgb(72, 255, 0);
  border-bottom: 1px solid rgb(72, 255, 0);
}

.cvsectionHeader h3 {
  margin: 10px 0px;
  font-size: 1.8rem;
}
  /* Animation Keyframes */
  
  @keyframes reveal {
    to {
    max-height: 2000px;
    }
  }

  @keyframes glowPulse {
    from {
    filter: drop-shadow(0 0 4px rgb(9, 244, 45));
    }
    to {
    filter: drop-shadow(0 0 10px rgb(9, 244, 45));
    }
}

  @keyframes flicker {
    0% {opacity: 1;}
    50% {opacity: 0.97;}
    100% {opacity: 1;}
}

  @keyframes scan {
    0% {
    transform: translateY(-100%);
    }
    100% {
    transform: translateY(100%);
    }
}