/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fond noir + centrage vertical/horizontal */
body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* remplit tout l'écran */
    z-index: -1; /* derrière le contenu */
}



/* GIF responsive */
img {
    max-width: 80%;
    max-height: 50vh;
    height: auto;
    padding-bottom: 100px;
}

/* Liens */
.links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #ffffff;
}
