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

/* Body */
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0f172a; /* Bleu foncé */
    color: white;
    font-family: 'Courier New', Courier, monospace;
}

/* Texte au centre */
.container h1 {
    font-size: 2rem;
    text-align: center;
}
.container {

    position: relative;
    z-index: 1;
}


/* Curseur clignotant */
.cursor {
    display: inline-block;
    background-color: white;
    width: 2px;
    animation: blink 0.7s infinite;
    margin-left: 2px;
}

/* Aurora Background */
.aurora {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at 30% 30%, rgba(0, 255, 204, 0.1), transparent 40%),
                radial-gradient(circle at 70% 40%, rgba(0, 128, 255, 0.1), transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(255, 0, 255, 0.1), transparent 60%);
    animation: moveAurora 20s ease-in-out infinite;
}

@keyframes moveAurora {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}/*HEy*/

