#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1; /* Envoie la vidéo à l’arrière-plan */
    will-change: transform; /* Optimise les performances du mouvement */
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 100vh;
}

#logo {
    margin-top: 20px;
    width: 80vw;
}

.text {
    font-size: 40px;
    color: #fff;
}

.cont__rs {
    display: flex;
    gap: 10px;
}

@media all and (max-width: 992px){
    .content {
        justify-content: center;
    }

    #logo {
        margin: 0;
        width: 100vw;
    }

    .text {
        font-size: 25px;
    }
}