body, html {
            width:100vw;
            height: 100vh;
            margin: 0;
            overflow: hidden;
            background-color: #00ff44;
        }
        canvas {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 10;

        }
        video {
            display: none;
        }


        .section-text {
        display: flex;
        justify-content: center; /* Horizontally centers */
        align-items: center;     /* Vertically centers */
        height: 100vh;           /* Full viewport height */
        margin: 0;               /* Remove default margins */
      }

      /* Style the text */
      .about_text {
        font-family: 'Roboto', sans-serif;
        font-size: 32vw;         /* Responsive font size based on viewport width */
        color: #000000;
        text-align: center;      /* Center text within the <p> */
        z-index: 1;
            /* Adjust line height for better readability */
              /* Optional: Add some horizontal padding */
        box-sizing: border-box;  /* Ensure padding is included in the total width */
      }

      @media only screen and (max-width: 768px) {
      .section-text {
          display: flex; /* Use flexbox for centering */
          justify-content: center; /* Center horizontally */
          align-items: center; /* Center vertically */
          position: relative;
          overflow: hidden; /* Handle potential overflow */
          width: 100vw; /* Full viewport width */
          height: 100vh; /* Full viewport height */
      }

      .about_text {
          font-family: 'Roboto', sans-serif;
          font-size: 50vw; /* Responsive font size */
          transform: rotate(-90deg); /* Rotate text */
          transform-origin: center; /* Ensure rotation is around the center */
          position: absolute; /* Absolute positioning for centering */
          top: 18%;
          left: 50%;
          /* Adjust translate based on your design needs */
          transform: translate(-50%, -50%) rotate(-90deg); /* Centering and rotation */
      }
  }
