/* ########################### canvas container ######################### */
.canvas-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: transparent;   
    z-index: -1;
  }
  
/* Media query for screens with width less than 900px */
@media (max-width: 1100px) {
  #three-canvas {
     height: 50vh;
  }
  .canvas-container {
    height: 50vh;
    width: auto;
  }
}

  #three-canvas {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensure the canvas is behind the heading */
  }
  
  .heading-container {
    position: relative;
    top: -10%;
    z-index: 1; /* Ensure the heading is above the canvas */
    text-align: center;
    padding: 100px 0; /* Adjust padding as needed */
  }
  
  .heading-container h1 {
    color: white; /* Adjust text color as needed */
    font-size: clamp(3rem,8vw,12rem);
    text-shadow: 0 0 10px rgba(27,23,27,.726);
  }