/*c'est le corps de tous le site*/
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f10079a8;
    color: #000000;
    line-height: 1.6;
}
/* le titre du haut*/
header {
    background-color: rgba(0, 0, 0, 0); 
    padding: 10px 20px;
    color: #ffffff;
}

header h1 {
    text-align: center;
    margin: 0;
}
/*la ligne qui séparent le titre à la présentation*/
.separator {
    border: 0;
    height: 2px;
    background-color: #000000;
    margin: 10px 0;
}
/*contient les liens d'acceuil*/
nav {
    margin-top: 10px;
}
/*contient les liens d'acceuil*/
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}
/*contient les liens d'acceuil*/
nav ul li {
    margin: 0 15px;
}
/*contient les liens d'acceuil*/
nav ul li a {
    color: #000000;
    text-decoration: none;
    padding: 10px 15px;
    transition: background-color 0.3s;
}
/*contient les liens d'acceuil*/
nav ul li a:hover {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}
/*contient un text*/
main {
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    position: relative;
    z-index: 1;
}
/*bloc pu se trouve les textes*/
main section {
    position: relative;
    background-color: #ffffff;
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}


/*bloc pu se trouve les textes*/
main section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
    text-decoration: underline;
    color: #000000;
}
/* bas de la page*/
footer {
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0); 
    color: #000000;
}
/* bas de la page*/
footer p {
    margin: 5px 0;
}
/* bien placer la video*/
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
/* bien placer la video*/
.video-background video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

/*la ligne qui séparent le titre à la présentation*/
hr {
    border: 0;
    height: 2px;
    background-color: #f87272;
    margin: 10px 0;
}


/* bien placer la video*/
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* bien placer la video*/
.video-background video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    filter: brightness(50%); 

}
/* bien placer la video*/
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: 0; 
}