<style>
    body {
        background:#1E90FF;
        color: #fff;
        font-family: 'Arial', sans-serif;
        text-align: center;
        padding: 50px;
    }

    h1 {
        font-size: 60px;
        color: #0000ff;
        text-shadow: 0 0 10px #ff00ff, 0 0 20px #00eaff, 0 0 40px #00eaff;
    }

    .neon-button {
        display: inline-block;
        padding: 15px 40px;
        margin-top: 40px;
        font-size: 22px;
        color: #fff;
        border: 2px solid #ff00ff;
        text-shadow: 0 0 10px #ff00ff;
        box-shadow: 0 0 10px #ff00ff, inset 0 0 10px #ff00ff;
        border-radius: 8px;
        transition: 0.3s;
    }

    .neon-button:hover {
        box-shadow: 0 0 20px #ff00ff, inset 0 0 20px #ff00ff;
        cursor: pointer;
    }
</style>
</head>
<body>

<h1>Welkom op mijn Neon Website</h1>
<h1>Alles straalt hier in neon‑licht.</h1>

<a class="neon-button">Klik hier</a>

</body>
