/*caractéristique de la page*/
body
{
	display: grid;
	grid-template-columns: 47% 47% ;
	grid-template-rows: 100px 100px 100px 1fr;
	grid-column-gap: 6%;
	padding: none;
	margin: none;
	background-color: rgb(5, 32, 63);
	font-size: x-large;
	color: rgba(255, 255, 255, 0.781);
}

/*caractéristique bandeau navigation*/
nav
{
	grid-column: 1/3;
	grid-row: 1/1;
	display: flex;
	justify-content: space-around;
	background-color: rgba(51, 141, 243, 0.527);
	height: 100%;
	width: 100%;
	box-shadow: -3px 5px 21px hsla(0, 0%, 0%, 0.8);
}

/*caractéristique en tête*/
header
{
	margin-top: 10px;
	grid-column: 1/3;
	display: flex;
	justify-content: center;
	align-items: center;
}

/*caractéristiques pied de page*/
footer
{
	display: flex;
	grid-column: 1/3;
	height: 300px;
	width: 100%;
	background-color:rgba(61, 61, 61, 0.897);
}
iframe{
	background-color: white;
}
reel{
	background-color: green;
}
fictif{
	background-color: red;
}