/* Supprime les marges et ajuste la hauteur */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
   
}

/* Conteneur vidÃƒÂ©o : FixÃƒÂ© en arriÃƒÂ¨re-plan */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1; /* Pour ÃƒÂªtre derriÃƒÂ¨re le contenu */
}

/* Style de la vidÃƒÂ©o : Toujours plein ÃƒÂ©cran */
.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100vw;
    min-height: 100vh;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Contenu principal */
.content {
    position: relative;
    color: white;
    text-align: center;
    padding: 100px 20px;
    font-family: Arial, sans-serif;
    z-index: 1;
}

/* Sections */
.box-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.box {
    background: rgba(7, 66, 242, 0.32);
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
}

.box img {
    width: 100%;
    border-radius: 10px;
}

.box .btn {
    margin-top: 10px;
}

.box .btn a {
    display: inline-block;
    padding: 10px 15px;
    color: white;
    background: #ff73737a;
    text-decoration: none;
    border-radius: 5px;
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}
