
body
{
    width:100%;
    font-family:"Century Gothic","Comic sans MS",Verdana,serif;
    font-size: 1vw;
    background-color:bisque ;
    padding:0px;
	margin:0px;
}
header
{
    width:99.5% ;
    height:fit-content;
    background-color:bisque;
    padding:0px;
    margin-left:0px;
	margin-right:0px;
	margin-top:1px;
	margin-bottom:1px;
    border: 5px solid darkgoldenrod;
    border-radius:15px;
}
.div1
{
    display: inline-block;
    position:relative;
    vertical-align: top;
    top: 3vw;
    width: 6%;
    background-color:bisque;
    padding:0px;
    margin-left:2%;
    margin-right:6%;
}
.div2
{
    display: inline-block;
    position:relative;
    vertical-align:top;
    height:fit-content;
    width: 60%;
    padding:0px;
    margin-left:6%;
    margin-right:0%;
}
.div3
{
    float:right;
    position:relative;
    vertical-align:top;
    top: 3vh;
    width: fit-content;
    height:auto;
    background-color:bisque;
    padding-left:0%;
    margin-right:2%;
}
.liste
{
float:right;
}
.div4
{
    width: fit-content;
    padding : 0px;
    margin:auto;
    margin-bottom:5px;
    text-align:center;
    background-color: white;
    font-weight:bold;
}

.image1
{
    width:100%;
    height:auto;
}

.div2-1
{
    display:inline-block;
    position:relative;
    top:4vw;
    width:22%;
    vertical-align: top;
    margin-left:0%;
    margin-right: 2.5%;
}
.motif
{
    width: 100%;
}
.div2-2
{
    display:inline-block;
    vertical-align: top;
    position:relative;
    top:0vw;
    width: 38%;
    height:10vw;
    background-color:bisque;
    margin-top:0px;
    margin-bottom: 0px;
    margin-left:6%;
}
.image2
{
    position:relative;
    vertical-align: top;
    top:-15px;
    width:100%;
    height:auto;
    margin:0px;
    padding:0px;
}
.div2-3
{
    float:right;
    vertical-align: top;
    position:relative;
    top:4vw;
    width:22%;
    padding:0px;
}
h1
{
    text-align: center;
}
.section1
{
    margin-top:3px;
    margin-bottom:0px;
    padding-top: 2px;
    border:1px solid;
    border-radius: 1px;
    border-color: darkgoldenrod;
    background-color: bisque;
    background-size: contain; 
}
.le_groupe
{
    display: block;
    height:fit-content;
    padding-left:2%;
    padding-right:2%;
    margin-left:0%;
    margin-right:0%;
    margin-bottom:0%;
    margin-top:0%;
    background-color:bisque;
    border-bottom: 5px solid darkgoldenrod;
    text-align: justify;
}
.le_groupe1
{
    margin-left:2%;
    text-align: center;
    font-size:150%;
}
.img-groupe
{
	display:block;
	width:60%;
	height:auto;
	margin-left: auto;
	margin-right:auto;
}
.audio
{
	width:20%;
	height:2vw;
}
.musicien
{
	display: block;
    height:fit-content;
	margin-bottom:0%;
	border-bottom: 1px solid darkgoldenrod;
	text-align:center;
}
.musicien1
{
    display: block;
    height:fit-content;
    width: 96%;
    padding-left:2%;
    padding-right:2%;
    margin-left:0%;
    margin-right:0%;
    margin-bottom:0%;
    margin-top:0%;
    background-color:bisque;
    border:none;
    text-align:justify;
}
.musicien2
{
    display:inline-block;
    margin-left:2%;
}
.image3
{
    float:left;
    width:6%;
    height:auto;
}
.image4
{
    float:left;
    width:5%;
    height:auto;
}
.calendrier
{
    display: block;
    height:fit-content;
    padding-left:2%;
    padding-right: 2%;
    margin-left: 0%;
    margin-right:0%;
    margin-bottom:0%;
    margin-top:0%;
    background-color:bisque;
	border-bottom: 5px solid darkgoldenrod;
    text-align: center; 
}
/*********************************************************************************************************
*Les videos                                                                                              *
**********************************************************************************************************/
/* Conteneur isolé */
.slider-wrapper {
    max-width: 40vw;
    margin: auto;
}

/* Cacher les radios */

input[type="radio"] {
    display: none;
}

/* Slider */
.slider {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
    margin:auto;
    margin-top: 3vw;
}

/* Bande horizontale */
.slides {
    display: flex;
    width: 800%; /* 8 vidéos */
    transition: margin-left 0.8s ease;
}

.slide {
    width: 12.5%; /* 100 / 8 */
    flex-shrink: 0;
}

.slide video {
    width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 10px;
}

.nav label {
    width: 0.9vw;
    height: 0.9vw;
    border-radius: 50%;
    border: 2px solid #888;
    cursor: pointer;
    transition: 0.3s;
}

.nav label:hover {
    background: #888;
}

/* Déplacements du slider */
#v1:checked ~ .slider .slides { margin-left: 0%; }
#v2:checked ~ .slider .slides { margin-left: -100%; }
#v3:checked ~ .slider .slides { margin-left: -200%; }
#v4:checked ~ .slider .slides { margin-left: -300%; }
#v5:checked ~ .slider .slides { margin-left: -400%; }
#v6:checked ~ .slider .slides { margin-left: -500%; }
#v7:checked ~ .slider .slides { margin-left: -600%; }
#v8:checked ~ .slider .slides { margin-left: -700%; }

/* Bouton actif */
#v1:checked ~ .nav label[for="v1"],
#v2:checked ~ .nav label[for="v2"],
#v3:checked ~ .nav label[for="v3"],
#v4:checked ~ .nav label[for="v4"],
#v5:checked ~ .nav label[for="v5"],
#v6:checked ~ .nav label[for="v6"],
#v7:checked ~ .nav label[for="v7"],
#v8:checked ~ .nav label[for="v8"] {
    background: darkgoldenrod;
    border-color: #333;
}

.realisation
{
    font-size: 0.7vw;
    font-style: italic;
    text-align: center;
    padding-bottom: 2vw;
    border-bottom: 5px solid darkgoldenrod;
} 

footer
{
    height:fit-content;
    background-color:bisque;
    padding:0px;
    margin-left:0px;
	margin-right:0px;
	margin-top:1px;
	margin-bottom:1px;
    border: 5px solid darkgoldenrod;
    border-radius:15px; 
}
.h2-footer
{
    text-align: center;
}

/*@media screen and (max-width: 899px)
{
    body
	{
		font-size: 0.9vw;
	}
    .div1,.div3
    {
        top:2vh;
    }
    h2,h3,p
    {
        font-size:1.5vw;
    }

    .audio
	{
		width:60%;
		height:2.5vw;
	} 
    .realisation
    {
        font-size:1vw ;
    }  
}
@media screen and (min-width:900px) and (max-width:1600px)
{

	.audio
	{
		width:30%;
		height:2vw;
	}
}*/