 * {
            margin: 0;
            padding: 0;
        }

        body {
            background: #000;
            color: #00fff7;
            font-family: 'Courier New', monospace;
            overflow: hidden;
        }

        canvas {
            display: block;
            position: fixed;
            top: 0;
            left: 0;
            z-index: -1;
        }

        .content {
            position: relative;
            z-index: 1;
            padding: 20px;
        }

        h2 {
            text-shadow: 0 0 10px #00fff7;
            margin-bottom: 20px;
        }

        a {
            color: #00fff7;
            text-decoration: none;
            padding: 10px 20px;
            border: 1px solid #00fff7;
            display: inline-block;
            margin: 10px;
            transition: all 0.3s;
            text-shadow: 0 0 10px #0f0;
        }

        a:hover {
            background: #0f0;
            color: #000;
            box-shadow: 0 0 20px #0f0;
        }
