* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body, html {
            height: 100%;
            font-family: 'DM Sans', sans-serif;
            overflow: hidden;
        }

        #canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .container {
            position: relative;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 48px;
            color: white;
            font-size: 36px;
            line-height: 1.2;
            z-index: 1;
        }

        .top-text {
            align-self: flex-start;
        }

        .center-text {
            align-self: flex-start;
        }

        .bottom-text {
            align-self: flex-start;
        }

        .bottom-text a {
            color: white;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
            transition: opacity 0.2s ease;
        }

        .bottom-text a:hover {
            opacity: 0.7;
        }

        @media (max-width: 768px) {
            .container {
                padding: 24px;
                font-size: 28px;
                padding-bottom: 48px;
            }
        }

        @media (max-width: 480px) {
            .container {
                height: 50%;
                padding: 16px;
                font-size: 24px;
            }
        }