@import url("https://use.typekit.net/jmk3xov.css");

canvas {
  position: fixed;
  top: 0;
  left: 0;
}


:root {
  --dark-bg: rgba(15, 15, 15, 0.95);
  --spacing: 350px;

  font-family: brandon-grotesque, sans-serif;
  font-weight: 400;
  font-style: normal;
  
}

body {
  overflow: hidden;
  margin: 0;
  height: 100%;
}

main {
  width: 80vw;
  height: 100vw;
  color: white;
  z-index: 99;
  position: absolute;
  width: 100%;
  margin: 0px auto;
  padding: 0;
  
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}



h1, h2, h3, blockquote {
  font-family: elevon, sans-serif;
  font-weight: 700;
  font-style: normal;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
}



  header {
    background: var(--dark-bg);
    grid-column: 2 / span 5;
    font-size: 2.5rem;
    padding: 2rem;
    margin-bottom: var(--spacing);
  }

  section {
    font-size: 1.25rem;
    line-height: 1.5;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    opacity: 0.97;
    
    position: absolute;
    z-index: 10;
}

  iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  blockquote {
    margin: 0;
    padding: 0;
    grid-column: 2 / span 9;
    margin-bottom: var(--spacing);
  }

  blockquote p {
    color: black;
    background-color: white;
    font-size: 4rem;
    display: inline;
    line-height: 1;
  }

  .left {
    grid-column: 6 / 12;
  }

  #contentSection {
    width: 100%;
    height: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10; /* Ensure it appears above the Three.js canvas */
    transition: height 0.5s ease-in-out; /* Smooth height transition */
  }

  #contentSection.expanded {
    height: 100%; /* Target height when expanded */
  }