* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.landing-container {
    display: flex;
    height: 100vh;
}

/* Left Panel */
.left-panel {
    width: 65%;
    background-color: #1e1e1e;
    color: white;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* justify-content: center; */
    padding: 20px;
    /* text-align: left; */
}


/* Right Panel */
.right-panel {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg);
}

#os-display {
    width: 100%;
    height: 100%;
}

/* Responsive: Mobile View */
@media (max-width: 1024px) {
    .left-panel {
        display: none;
    }
    .right-panel {
        width: 100%;
    }
}


/**********************

Left panel name and animation
**********************/


/* 
*, *::before, *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
  } */
  a {
    text-decoration: none;
  }
  /**
   * The fixed Side 
   */
  .side {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    width: 50px;
    border-right: 1px dashed #F6F8D5;
    color: #EEF1DA;
    font-family: "nimbus-sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.0875rem;
    font-size: 10px;
    transition: all 0.3s cubic-bezier(0.05, 0.69, 0.14, 1);
  }
  
  .side .side__inner {
    position: relative;
    height: 100%;
    white-space: nowrap;
  }
  .side a {
    color: inherit;
    word-spacing: 0;
    transition: all 0.3s cubic-bezier(0.05, 0.69, 0.14, 1);
  }
  .side .top, .side .bottom {
    position: absolute;
    left: 0;
    transform: rotate(-90deg) perspective(1px);
    transform-origin: 50px 50px;
    height: 50px;
    line-height: 50px;
    white-space: nowrap;
    word-spacing: 0.5rem;
  }
  .side .top {
    right: 0;
    top: 375px;
    text-align: right;
    color: #EEF1DA;
  }
  .side .bottom {
    top: auto;
    bottom: 75px;
  }

  .ah:hover {
    color: rgb(247, 191, 49);
  }
  .side .bottom:hover a:hover {
    color: rgba(255, 255, 255, 0.6);
  }
  
  /**
   * The different sections
   */
  .section {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    min-height: 60vh;
    width: 98%;
    /* align-content: left; */
    margin: 0 0 0 30px;
    padding: 0 0 0 15px;
  }
  .section svg {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    width: 100%;
    height: 50px;
  }
  .section svg.bottom {
    bottom: 0;
    top: auto;
    fill: grey;
  }
  .section .section__inner {
    height: 100%;
    max-width: 800px;
    /* margin: auto auto auto 0; */
  }
  .section.section--hello {
  height: 100%;
    /* background-color: #18230F; */
    justify-content: top;
    align-items: top;
    color: #EEF1DA;
  }
  /**
   * Typo
   */
  
  @media (min-width: 30rem) {
    h2 {
      /* font-size: 2.5rem; */
    }
  }


  /**********************************************
                     Pop -up 
  *********************************************/

.project-popup.hidden {
  display: none;
}

.project-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.project-popup .popup-overlay {
  position: absolute;
  top:0; left:0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
}

.project-popup .popup-content {
  position: relative;
  background: white;
  border-radius: 1rem;
  width: 90%;
  max-width: 400px;
  padding: 20px;
  z-index: 1000;
  overflow-y: auto;
  max-height: 80%;
}

.popup-close {
  position: absolute;
  top: 10px; right: 15px;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-secondary);
}
