*   {
        box-sizing: border-box; /* Include padding and border in the element's total width and height */
    }

    :root {
        --random-color: rgb(20, 158, 208); /* Default color */
    }

    body {
        margin: 0; /* Remove default body margin */
        font-family: Arial, sans-serif; /* Set a default font */
        background-color: #05050b; /* Set a background color */
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh; /* Ensure minimum height of the viewport */
        overflow: hidden;
    }

    canvas {
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1; /* Behind other content */
    }

    .logo {
        position: fixed;
        width: 200px;
        height: 40px;
        border: 6px solid var(--random-color);
        /*box-shadow: 0 0 10px 2px var(--random-color);*/
        z-index: 10;
        overflow: hidden;
        display:flex;
        top: 0;
        left: 0;
        background-color: #05050b; /* Add a background color */
    }

    .logo h1{
        position: absolute;
        width: 100%;
        height: 100%;
        color: #fff;
        font-size: 1.6em;
        text-align: center;
        margin: 0%;
    }

    .pagecontainer {
        position: absolute;
        width: 100%; /* Adjust width with margins subtracted */
        height: 100%; /* Adjust height with margins subtracted */
        padding: 10px; /* Add padding inside the box */
        /*background-color: rgb(3, 3, 32); /* Set a background color */
        overflow: auto; /* Add scrollbar when content overflows */
        border: 6px solid var(--random-color); /* Add a border */
        /*box-shadow: 0 0 100px 10px var(--random-color);*/
        /*border-radius: 10px; /* Add curved corners */
        z-index: 1;
        scroll-behavior: smooth;
    }

    .pagecontainer h1 {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 6em;
        margin-bottom: 4px;
        text-align: center;
        line-height: 1.2; /* Adjust paragraph line height */
        color: #fff;
    }

    .pagecontainer::-webkit-scrollbar {
        display: none;
    }

    .section {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 100px;
        margin-top: 100px;
    }

    .content {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .content h2{
        font-size: 3em;
        margin-bottom: 3px;
        justify-content: center;
        text-align: center;
        line-height: 1.2; /* Adjust paragraph line height */
        color: #fff;
    }

    .smallContent {
        display: flex;
        width: 80%;
        
    }

    .text,
    .image {
        width: 50%; /* Each taking half of the section */
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .text h1 {
        font-size: 3em;
        margin-bottom: 3px;
        text-align: center;
        line-height: 1.2; /* Adjust paragraph line height */
        color: #fff;
    }

    .text h2 {
        font-size: 2em;
        margin-bottom: 2px;
        text-align: center;
        line-height: 1.2; /* Adjust paragraph line height */
        color: #fff;
    }
      
    .text p {
        font-size: 1em;
        text-align: center;
        line-height: 1.6;
        color: #fff;
    }
      
    .image img {
        background-size:cover; /* Scale the background image to cover the whole container */
        background-position: center; /* Center the background image */
        width: 100%;
        border: 3px solid var(--random-color);
    }

    @media (max-width: 800px) {
        .logo {
            width: 160px;
            height: 30px;
        }
    
        .logo h1{
            font-size: 1em;
        }

        .section {
            flex-direction: column; /* Stack items vertically */
            align-items: center;
        }
      
        .smallContent {
            flex-direction: column; /* Stack text and image vertically */
            align-items: center;
        }
    
        .content h1 {
            font-size: 4em;
        }

        .content h2{
            font-size: 2em;
            margin-bottom: 3px;
            justify-content: center;
            text-align: center;
            line-height: 1.2; /* Adjust paragraph line height */
            color: #fff;
        }
      
        .text,
        .image {
            width: 100%; /* Full width for text and image on small screens */
        }
      
        .text,
        .image {
            padding: 10px; /* Adjust padding for smaller screens */
        }

        .text h1 {
            font-size: 2em;
            margin-bottom: 6px;
            line-height: 1;
        }
    
        .text h2 {
            font-size: 1em;
            margin-bottom: 6px;
            line-height: 1;
        }
    
        .text p {
            font-size: 0.8em;
            line-height: 1.4;
        }
    }