/*element principal en relatif pour permettre aux elements absolus d'etre positionnes*/
body {
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    background-color: white;
    min-width: 1860px;
    max-width: 1860px;
    min-height: 926px;
    max-height: 926px;
    color: white;
    font-weight: 600;
}

/*on utilise un element image pour le fond, sinon il serait dependant de la taille d'ecran*/
#background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 1860px;
    height: 926px;
    margin: 0;
    padding: 0;
}

/*position de la liste et des textes*/

h2 {
    font-size: 15px;
}

audio {
    display: none;
}

#choixpays {
    padding: 5px;
    margin: 10px;
    margin-top: 840px;
}

#franceGame {
    transition: width 0.5s, height 0.5s, margin 0.5s, filter 0.5s;
    position: absolute;
    padding: 5px;
    margin: 10px;
    margin-top: 850px;
    margin-left: 450px;
    width: 50px;
    filter: invert(100%);
}

#hourglass {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 10px;
    left: 10px;
}

#hour {
    position: absolute;
    width: 30px;
    height: 30px;
    left: 50px;
    color: black;
}

#target {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 60px;
    left: 10px;
}

#targetText {
    position: absolute;
    top: 50px;
    left: 50px;
    color: black;
}

#timeCup {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 840px;
    left: 1000px;
    display: none;
}

#precisionCup {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 840px;
    left: 700px;
    display: none;
}

#franceGame:hover {
    transition: width 0.5s, height 0.5s, margin 0.5s, filter 0.5s;
    width: 60px;
    margin-top: 845px;
    margin-left: 445px;
    filter: invert(70%);
}

#trueLands {
    padding: 5px;
    margin: 10px;
    margin-left: 70px;
    margin-top: 840px;
}
	
#reponseVF {
    padding-left: 10px;
    position: absolute;
    margin-top: 875px;
    color: #33cc33;
}

#reponseNVF {
    padding-left: 10px;
    position: absolute;
    margin-top: 890px; 
    color: #ff3333;   
}

#comment {
    padding-left: 10px;
    position: absolute;
    margin-top: 860px;
    margin-left: 1250px;
}
	
#boutons button {
    position: absolute;
    margin-left: 200px;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    font-weight: bold;
    border: 2px solid black;
}

/* Propriétés des boutons *************************************************************************************/
input[type=submit] {
 width:90px;
 margin-left:5px;
 box-shadow:2px 1px 3px #CC8800;
 background-color:#AAAACC;
 border-radius:8px;
 cursor:pointer;
 }
 /* Passage de souris sur le bouton *******************************************************************************/
 input[type=submit]:hover{
 background-color:#FFCC32;
 }
 /* Appuie sur le bouton *******************************************************************************/
 input[type=submit]:active{
 background-color:#E8B92E;
 }

/*Les differents elements positionnes en absolu*/
#pays1 {
    position: absolute;
    width: 24px;
    height: 24px;
	border-radius: 12px;
    top: 295px;
    left: 870px;
}


#pays2 {
    position: absolute;
    top: 390px;
    right: 950px;    
    width: 50px;    
    height: 20px;    
    
}

#pays3 {
    position: absolute;
    bottom: 275px;
    right: 240px;
    width: 150px;
    height: 30px;
    
}


#pays4 {
    position: absolute;
    left: 240px;
    top: 210px;
    height: 60px;
    width: 130px;
}

#pays5 {
    position: absolute;
    top: 335px;
    left: 300px;
    height: 40px;
    width: 155px;
    
}
#pays6 {
    position: absolute;
    bottom: 340px;
    left: 569px;
    width: 80px;
    height: 30px;
}

#pays7 {
    position: absolute;
    top: 90px;
    left: 630px;
    height: 50px;
    width: 90px;

}

#pays8 {
    position: absolute;
    right: 566px;
    top: 423px;
    height: 15px;
    width: 55px;
 
}

#pays9 {
    position: absolute;
    top: 195px;
    right: 388px;
    height: 40px;
    width: 300px;
}

#pays10 {
    position: absolute;
    top: 400px;
    right: 1490px;
    height: 40px;
    width: 30px;
}

#pays11 {
    position: absolute;
    top: 430px;
    right: 990px;    
    width: 25px;    
    height: 25px;    
    
}

#pays12 {
    position: absolute;
    top: 340px;
    right: 450px;    
    width: 100px;    
    height: 50px;    
    
}

/*classe permettant le surlignage des elements cliquables*/
.hint:hover {
    background-color: #ffffff;
	opacity: 0.7;
    cursor: pointer;
}

.hint {
    color: black;
    font-weight: bold;
    text-align: center;
}

/*pied de page*/
footer {
    position: absolute;
    bottom: 20px;
    right: 900px;
}


