* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Aptos';
    overflow-x: hidden;
    background-color: #000000;
  }

  @font-face {
    font-family: 'Aptos';
    src: url('Aptos.woff2') format('woff2'),
        url('Aptos.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roslindale Dsp Cd';
    src: url('RoslindaleDspCd-Regular.woff2') format('woff2'),
        url('RoslindaleDspCd-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


  
  .section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: left;
  }
  
  .section .background-layer {
    position: fixed; /* Keep the background fixed */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Ensure the background is fixed */
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: -1; /* Make sure it stays behind the content */
  }
  
  #section1 .background-layer {
    background-image: url('1.jpg');
  }
  
  #section2 .background-layer {
    background-image: url('2.jpg');
  }
  
  #section3 .background-layer {
    background-image: url('3.jpg');
  }
  
  #section4 .background-layer {
    background-image: url('4.jpg');
  }
  
  /* CSS Grid for content */
  .content {
    z-index: 1; /* Keep content in front */
    display: grid;
    grid-template-columns: repeat(8, 1fr); /* 8 equal columns */
    gap: 56px; /* 56px gap between columns */
    padding: 0 56px; /* 56px left and right padding */
    width: 100%;
  }
  
  .content-inner-start {
    grid-column: 5 / 9; /* Span columns 5 to 8 */
  }
  
  .content-inner {
    grid-column: 6 / 9; /* Span columns 5 to 8 */
  }
  


  .content h1 {
    font-family: 'Roslindale Dsp Cd';
    font-size: 100px;
    line-height: 100%;
    margin-bottom: 20px;
    color: #CCFF99;
    letter-spacing: 2.8px;
  }
  .content h2 {
    font-family: 'Roslindale Dsp Cd';
    font-size: 72px;
    line-height: 100%;
    margin-bottom: 20px;
    color: #CCFF99;
    letter-spacing: 2.8px;
  }
  
  .content p {
    font-family: 'Aptos';
    font-size: 18px;
  }
  
  .active .background-layer {
    opacity: 1;
  }
  

.logo{
    position: fixed;
    padding-top: 32px;
    padding-left: 32px;
    z-index: 3;
}