        @import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap');

        body {
            margin: 0;
            padding: 0;
            height: 100vh;
            background: rgb(38,59,166);
            background: radial-gradient(circle, rgba(38,59,166,1) 0%, rgba(11,0,111,1) 100%);
            color: #fff;
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            font-family: "Pixelify Sans", sans-serif;
        }

        .fading-title {
            font-size: 3rem;
            font-weight: bold;
            text-align: center;
            animation: colorFade 5s infinite;
            transition: color 0.5s ease-in-out;
        }

        @keyframes colorFade {
            0% { color: #0800ff; }
            25% { color: #8f91ff; }
            50% { color: #0800ff; }
            75% { color: #8f91ff; }
            100% { color: #0800ff; }
        }

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

        .container {
            border: 2px solid #1c0666;
	        background-color: rgba(0, 0, 0, 0.5);
            padding: 50px;
            border-radius: 10px;
            z-index: 999;
        }

        h1 {
            font-size: 60px;
            margin: 0;
            font-family: "Pixelify Sans", sans-serif;
        }

        p {
            font-size: 24px;
            margin-top: 20px;
            font-family: "Pixelify Sans", sans-serif;
        }

        a {
            color: #8f91ff;
            text-decoration: none;
            transition: 0.3s ease-in-out;
        }

        a:hover {
            color: #0800ff;
        }