/* CSS commun aux simulations */
/* bonnaid.css */

h1
{
	font-size: 1.8em;
	font-style: italic;
	color: green;
	text-align: center;
}

h2
{
	font-size: 1.2em;
	color: black;
	text-align: left;
}

#logo
{
    display: flex;
    flex-direction: row;
    align-items: baseline;
}

#logo img
{
    width: 90px;
    height: 90px;
}

#contenu , #liseret
{
    display: inline-block;
    vertical-align: top;
}

#liseret
{
	width: 10%;
    margin-right: 3%;
    height: 640px;
    background-image: url('pattern--green.png');
	border-radius: 10px;
}

#contenu
{
    width: 85%;
	background-color: #FBF2B7;
}

section
{
    display: inline-block;
    vertical-align: top;
    width: 45%;
	height: 20%;
    margin-right: 2%;
}

#ex1 {
	background-image: url("./car-rear-new.jpg");
	width: 450px;
	height: 350px;
}


/* #bloc_page
{
    width: 1024px;
    /* margin: auto; => ceci décale la marge gauche verte vers la droite 
} */


/* ol
{
	color: black;
	border: 3px green solid;
	box-shadow: 3px 3px 5px red;
}
a
{
	font-size: 1.2em;
	text-decoration: none;
	color: black;
	font-style: bold;
}
a:hover
{
	color: grey;
	/* font-size: 1.3em; */
	/* font-style: bold; */
	font-weight: bold;
} */


.conteneur1{display: inline-block;}

.relative{position: relative;}
.absolu{position: absolute;}


/* Les pictogrammes des feux */
.rectangle{
	width: 40px;
	height: 15px;
	border-radius: 5px;
	background-color: #FF0000;
}

.cerG {
	width: 30px;
	height: 30px;
	border-radius: 20px;
	background-color: green;
}

.cerD {
	width: 30px;
	height: 30px;
	border-radius: 20px;
	background-color: blue;
}

/* La couleur des feux */
.rouge{background-color: #FF0040;}


/* La position des feux: */
/* feu stop haut */
.haut1{top: 70px;}
.gauche1{left: 204px;}

/* feu stop gauche */
.haut2{top: 152px;}
.gauche2{left: 80px;}

/* feu stop droite */
.droite{right: 85px;}

