html,body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
body{
    background:#bfe2e6;
}
#stopBtn, #stopBtn2{
    width: 150px;
    background: red;
    color: white;
    margin: 0 auto;
}
ul>li{
    list-style: none;
    margin: 0;
    padding: 0;
}
/**** Header ****/
header{
    height: 100px;
    background: yellow;
    background-image:linear-gradient(to top, orange 20%, yellow 60%, orange 100%);
}
.titleHead{
    background: url('../img/head.png') center center no-repeat;
    width: 467px;
    height: 100px;
}
/**** Plateau du jeu ****/
#board{
	position: relative; 
    /* top: 15%; */
    /* left: 180px; */
    /* right: 0;  */
    margin: 10vh auto 10vh auto;
	overflow: hidden;
    border: 1px solid black;    
}
#board div{
    position: absolute;
}
#board div.invaders{
	background: url('../img/canard.png') no-repeat;
	background-position: center center;
	background-size: 50% 95%;
}
#board div.fading{
	background-image: url('../img/canardrouge.png');
	background-position: center center;
	background-size: 70% 70%;
}
#board div a{
    position: absolute;
}
#board #mySquare{
  background-image: url('../img/shooter.png');
  background-position: center center;
  background-size: cover;
}
#board .shot{
	position: absolute;
	z-index: 1001;
	background-color: green;
	width: 20px;
	height: 20px;
	border-radius: 50%;
}
#board_bg{
	position: absolute;
    background: url('../img/fondGame.png') top center;
}
#board_bg div{
	position: absolute;
}
/**** Joueur 2 ****/

#board #mySquare2{
  background-image: url('../img/shootergreen.png');
  background-position: center center;
  background-size: cover;
}
#board .shot2{
	position: absolute;
	z-index: 1001;
	background-color: blue;
	width: 20px;
	height: 20px;
	border-radius: 50%;
}
/**** Titre des joueurs *****/
h2{
    margin-top: 0;
    background: darkred;
    color: wheat;
    padding: 5px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid white;
    box-shadow: inset 1px 2px 1px 2px rgba(255, 255, 255, .5);
}
/**** Informations du jeu au dessus du plateau ****/
#info{
	position: absolute;
	top: 110px;
	left: 180px;
	width: 81vw;
	height: 86vh;
	/* border: 1px solid black; */
	z-index: 20000;
	text-align: center;
	vertical-align: middle;
	background: url('../img/fondGame.png');
}
#info p{
	color: #036;
	font-weight: bold;
	margin-top: 50px;
}
#info a{
	color: #036;
}
/**** Panneau du joueur 1 ****/
#indicators {
	width: 166px;
	height: 90vh;
	padding: 5px;
    background: yellow;
    background-image:linear-gradient(to right, orange 20%, yellow 60%, orange 100%);
	float: left;
}
#indicators div{
	width: 110px;
	margin-top: 5px;
}
#indicators input{
	margin-top: 5px;
}
#shooterPres{
    background: #FFF url('../img/shooter.png') center center no-repeat;
    background-size: 80px;
    width: 85px;
    height: 85px;
    transform: scaleX(-1);
    filter: FlipH;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .4);
    border-radius: 20px;
    margin: 0 auto;
}
/**** Panneau du joueur 2 ****/
#indicators2 {
	width: 166px;
	height: 90vh;
	padding: 5px;
    background: yellow;
    background-image:linear-gradient(to right, orange 20%, yellow 60%, orange 100%);
	float: right;
}
#indicators2 div{
	width: 110px;
	margin-top: 5px;
}
#indicators2 input{
	margin-top: 5px;
}
#shooterPres2{
    background: #FFF url('../img/shootergreen.png') center center no-repeat;
    background-size: 80px;
    width: 85px;
    height: 85px;
    transform: scaleX(-1);
    filter: FlipH;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .4);
    border-radius: 20px;
    margin: 0 auto;
}
/**** Pied de page ****/
footer{
    background: yellow;
    background-image:linear-gradient(to top, orange 20%, yellow 60%, orange 100%);
    color: #1C1C1C;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right:0;
    height: 20px;
    font-size: .6em;
    line-height: 5px;
}
/*** AJOUTER DANS LE JS ******/
.presGame{
    position: absolute;
    top: 290px;
    left: 15%;
    right: 15%;
    background: darkred;
    border-radius: 20px;
    color: wheat !important;
    border: 2px solid white;
    padding: 10px;
    padding-bottom: 20px;
}
a.linkPresGame{
    color: wheat !important;
    background: darkgreen;
    padding: 10px;
    transition: .4s;
    text-decoration: none;
    border-radius: 20px;
    box-shadow: inset 1px 2px 1px 2px rgba(255, 255, 255, .5);
}
a.linkPresGame:hover{
    background: green;
    transition: .4s;
    box-shadow: inset 1px 2px 1px 2px rgba(0, 0, 0, .5);
}