/* Fichier CSS du site EKDVL-asso.fr */
/* Réalisé en 2023 par V.SIMPLEX. étudiant IFMKDV-Lyon */

/* Header */
.responsive-header {
	display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  width: 90%;
  height: auto;
}

/* Menu navigation */
.navbar {
  overflow: hidden;
  background-color: #191919ff;
}

.navbar a {
  float: left;
  font-family: arial, sans-sherif ;
  font-weight: bold;
  font-size: 18px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

/* boutons descendants */
.dropdown .dropbtn { 
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #808080;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #e6e6e6;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #8c8c8c;
}

.dropdown:hover .dropdown-content {
  display: block;
}


/* Corps de la page */
body {
	background-color: #808080;
	font-family: arial, sans-sherif ;
	font-size: 18px;
	margin: 0;
}

/* titres articles */
.t-articles {
	text-align: center;
	margin: 15px;
	font-size: 25px;
	border: 2px black;
	padding: 8px;
	background-color: #808080;
}

/* articles */
.articles {
	text-align: justify;
	text-align-last: left;
	line-height: 1,5;
	padding-top: 20px;
}


/* éléments sous forme de box */
* {
  box-sizing: border-box;
}

/* emplacement principal pour affichage contenu */
.main {
	background-color: #e5e5e5;
	float: left;
	width: 80%;
	margin: 20px;
	padding: 30px;
	text-align: justify;
}


/* iframe planning tuto responsive */

.main iframe {
	position: relative;
	width: 100%;
	height: 450px;
}


/* Encard droit pour line réseaux sociaux et contact */
.right {
  background-color: #a6a6a6;
  float: left;
  width: 10%;
  padding: 10px;
  margin: 20px;
  text-align: center;
}

/* date mise à jour */
.MAJ {
	font-style: italic;
	font-size : 10px;
	font-color: #b3b3b3;
}


/*Images responsives réseaux */
.resp-res{
	max-width: 50%;
	height: auto;
}

/* Footer*/
.responsive-footer {
	display: block;
	padding-top : 30px;
  width: 100%;
  height: auto;
}

/* Responsive pour petits écrans inf à 600px */

@media screen and (max-width: 600px) {
 
 .main, .right {
    width: 100%; /* toute la largeur écran si inf à 600px */
	margin: 20px;
	padding: 30px;
  }
  
.body {
	font-size: 3vw;
}

.navbar a {
  font-size: 3vw;
}

.dropdown .dropbtn { 
  font-size: 3vw;
}

.resp-res{
	max-width: 30%;
	height: auto;
}

.t-articles {
	text-align: center;
	margin: 15px;
	font-size: 4vw;
	border: 2px black;
	padding: 8px;
	background-color: #808080;
}

.articles {
	text-align: justify;
	text-indent: 8%;
	text-align-last: left;
	font-size: 3vw;
}



}