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

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Courier New', Courier, monospace;
    color: #00ff00;
    overflow: hidden; /* Évite le défilement */
}

/* Style de la vidéo en arrière-plan */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* S'assure que la vidéo remplit l'écran */
}

/* Contenu superposé */
.content {
    position: relative;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

h1 {
    font-size: 3rem;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
}

p {
    font-size: 1.5rem;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
}
