body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.video-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

header img {
    max-width: 300px;
}

main {
    max-width: 600px;
    margin: 0 auto;
}

button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #4B56DB;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 25px; /* Vous pouvez ajuster le rayon du bouton selon vos préférences */
}

button:hover {
    background-color: #3941a0; /* Couleur légèrement plus foncée au survol */
}
