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

        body {
            background-color: #000000;
            color: #ffffff;
            font-family: 'Times New Roman', serif;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .container {
            max-width: 50%;
            width: 100%;
        }

        .title {
            font-size: 3.5rem;
            font-weight: normal;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .navigation {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .nav-item {
            font-size: 1.5rem;
            text-decoration: none;
            color: #ffffff;
            transition: opacity 0.3s ease;
            cursor: pointer;
        }

        .nav-item:hover {
            opacity: 0.7;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .title {
                font-size: 2.5rem;
                margin-bottom: 1.5rem;
            }

            .navigation {
                gap: 2rem;
                flex-direction: column;
                align-items: center;
            }

            .nav-item {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .title {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .nav-item {
                font-size: 1.2rem;
            }

            .navigation {
                gap: 1.5rem;
            }
        }