body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, #0f172a, #020617);
}

/* IMPORTANT : contenu au-dessus */
body * {
    position: relative;
    z-index: 1;
}

/* glow rose */
body::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 130, 200, 0.25);
    filter: blur(120px);
    top: 20%;
    right: 10%;

    z-index: 0;
}

/* glow bleu */
body::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.18);
    filter: blur(140px);
    bottom: 10%;
    left: 5%;

    z-index: 0;
}


h1{
    color:#ffffff;
}

p{
    color: #ffffff;
}

a{
    color: #FFFF82;
}

footer {
    text-align: center;
    padding: 20px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 19px;
}