/* 
Video.css
par Alain BARBIER
écrit en juin 2019
màj mars 2020
*/

/*corps du document*/
body {
  background : url(fond.jpg)fixed;
} 

#corps
{
	width:940px;
	margin-left: auto;
	margin-right: auto;
}

header
{
	background : url(fond.gif)repeat;
	border: 1px grey solid; /*bordure grise de 2 pixels*/
	border-radius: 15px; /*angles arrondis de 15 pixels*/
	margin-bottom:5px;
	font-family: arial, verdana, sans-serif;
	color: navy;
	text-shadow:8px 8px 8px grey;
	font-size: 1.9em;
	font-weight: normal; 
	font-style:normal;
	text-align: center; 
}

h1
{
	font-family: arial, verdana, sans-serif;
	color: navy;
	text-shadow:8px 8px 8px grey;
	font-size: 2em;
	font-weight: normal; 
	font-style:normal;
	text-align: left;
	margin-top:20px;
	margin-left:30px;
}

h2
{
	font-family: arial, verdana, sans-serif;
	color: navy;
	text-shadow:8px 8px 8px grey;
	font-size: 2em;
	font-weight: normal; 
	font-style:normal;
	text-align: left; 
	margin-left:30px;
	margin-top:10px;
	margin-bottom:10px;
}

h3
{
	font-family: arial, verdana, sans-serif;
	color: navy;
	text-shadow:8px 8px 8px grey;
	font-size: 1.1em;
	font-weight: normal; 
	font-style:normal;
	text-align: left; 
	margin-left:30px;
	margin-top:10px;
	margin-bottom:10px;
}

strong
{
	font-family: arial, verdana, sans-serif;
	color: navy;
	text-shadow:8px 8px 8px grey;
	font-size: 1.2em;
	font-weight: bold; 
	font-style:normal;
}

section
{
	width:940px;
	display: flex;
	flex-direction: row;
	justify-content:space-between;
}

video
{
	width:880px;
	height:594px;
	margin-left:auto;
	margin-right:auto;
	outline: 0;
}

.encart
{
	width:940px;
	height: auto;
	background : url(fond.gif)repeat;
	border: 1px grey solid; /*bordure grise de 2 pixels*/
	border-radius: 15px; /*angles arrondis de 15 pixels*/
	margin-bottom:5px;
	font-family: arial, verdana, sans-serif;
	font-size: 1.1em;
	padding-right:10px;
}

.liens
{
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center; 
	margin-left: 30px;
}

.encart .retour
{
	text-align: center;
}

.bouton
{
	width:40%;
	padding-top: 10px;
}

.basdepage
{
	text-align: center;
	padding-top: 50px;
}


/*liens en rouge sombre, non soulignés, 
deviennent rouge vif et gras au survol du mulot*/

a{
text-decoration:none;
color:blue;
}
a:link{
font-size: 1.1em;
color:blue;
}
a:visited {
font-size: 1.1em;
color:blue;
}
a:hover{
font-size: 1.1em;
color:yellow;
}



/*-------------------------------------------------*/
/*-------- pour les écrans < 1024 pixels ----------*/
/*-------------------------------------------------*/

@media all and (max-width:1024px)
{
#corps
{
	width:500px;
}
header
{
	width:500px;
	border-radius: 10px; /*angles arrondis de 10 pixels*/
	margin-bottom:10px;
	text-shadow:2px 2px 2px grey;
	font-size: 1.4em;
}
h1
{
	text-shadow:2px 2px 2px grey;
	font-size: 1.5em;
	margin-top:15px;
	margin-left:10px;
	margin-bottom:5px;
}

section
{
	width:500px;
	height:auto;
	flex-direction: column;
}

video
{
	width:480px;
	height:360px;
}
	
.encart
{
	width:490px;
	height: auto;
	border-radius: 10px;
	font-size: 0.8em;
	padding-right:5px;
}

.liens
{
	margin-top:0px;
	margin-left:8px;
	margin-bottom:0px;
}

h2
{
	text-shadow:6px 6px 6px grey;
	font-size: 2em;
	margin-left:10px;
	margin-top:5px;
	margin-bottom:5px;
}

h3
{
	margin-left:10px;
}

.bouton
{
	width:50%;
	padding-top: 20px;
}

.basdepage
{
	padding-top: 15px;
	padding-bottom: 15px;
}

}


/*-------------------------------------------------*/
/*-------- pour les écrans < 480 pixels ----------*/
/*-------------------------------------------------*/

@media all and (max-width:480px)
{
#corps
{
	width:310px;
}
header
{
	width:310px;
	border-radius: 10px; /*angles arrondis de 10 pixels*/
	margin-bottom:5px;
	text-shadow:2px 2px 2px grey;
	font-size: 1.4em;
}
h1
{
	text-shadow:2px 2px 2px grey;
	font-size: 0.9em;
}

section
{
	width:310px;
	height:auto;
	flex-direction: column;
}

video
{
	width:296px;
	height:255px;
}

.encart
{
	width:305px;
	height: auto;
	border-radius: 10px;
	font-size: 0.8em;
	padding-right:5px;
}

.liens
{
	margin-top:0px;
	margin-left:8px;
	margin-bottom:0px;
}

h2
{
	text-shadow:6px 6px 6px grey;
	font-size: 2em;
	margin-left:10px;
	margin-top:5px;
	margin-bottom:5px;
}

h3
{
	margin-left:10px;
}


.basdepage
{
	padding-top: 15px;
	padding-bottom: 15px;
}

.bouton
{
	width:60%;
	padding-top: 30px;
}

}




