     @import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

     body {
            margin: 0;
            padding: 0;
            display: flex;
            background-color: #131315; 
            justify-content:left;
            height: 100%;
            padding-left:50px;
            padding-top: 50px;
        }

        .container {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 0 20px;
            max-width: 100%;
        }

        .logo {
            height: 60px;
        }

        h1 {
            color: #f1f1f1;
            font-weight: bold;
            font-family: "Inter Tight", sans-serif;
            font-optical-sizing: auto;
            font-weight: 600;
            font-style: normal;
            font-size: 35px;
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                text-align: center;
            }

            .logo {
                height: auto;
                max-width: 100%;
            }

            h1 {
                font-size: 1.5rem;
            }
        }