
#content {
  margin: 0;
  height:600px;
  text-align: center;
  user-select: none;
  background: url(./eg-images/background-prg-python.jpg);
  background-repeat : no-repeat;
  background-position :bottom right;
  
  
}

 

 
/* Slots for final card positions */
 
#cardSlots {
  margin: 0 auto ;
  float: right;
}
 
/* The initial pile of unsorted cards */
 
#cardPile {
  margin: 0 auto;
  float: left;
}
 
#cardSlots, #cardPile {
  width: 45%;
  height: 350px;
  padding: .85em;

}
 
/* Individual cards and slots */
 
#cardSlots div, #cardPile div {
  font-size: .8rem;
  font-weight:800;
  float: left;
  width: 70%;
  height: 15px;
  padding-left: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
  border: 1px solid ; 
  border-color : #888;
  margin: 10px 0 0 10px;
  background: #fff;
}
 
h3.rouge {
 color: red !important ;
 }
 
#cardSlots div.hovered {
  background: #aaa;
}
 
#cardSlots div {
  border-style: dashed;
  border-color : #888;
  text-align: left;
  color : #bbb;
}
 
#cardPile div {
  border: #333 3px solid ;
  background: #EEF;
  color: #333;
  text-shadow: 0 0 3px #fff;
  text-align: left;
}
 
#cardPile div.ui-draggable-dragging {
  box-shadow: 0 0 .5em rgba(0, 0, 0, .8);
}
 
/* Individually coloured cards */
 
#card1.correct { background: #ffcccc; transform : rotate(0deg); }
#card2.correct { background: #ffcccc; transform : rotate(0deg); }
#card3.correct { background: #ffcccc; transform : rotate(0deg); }
#card4.correct { background: #ffcccc; transform : rotate(0deg); }
#card5.correct { background: #ffcccc; transform : rotate(0deg); }
#card6.correct { background: #ffcccc; transform : rotate(0deg); }
#card7.correct { background: #ffcccc; transform : rotate(0deg); }
#card8.correct { background: #ffcccc; transform : rotate(0deg); }
#card9.correct { background: #ffcccc; transform : rotate(0deg); }
#card10.correct { background: #ffcccc; transform : rotate(0deg); }
 
 

#successMessage, #erreurMessage {
  font-family: 'Caveat', cursive;
  font-family: 'Caveat', cursive;
  font-size : 20px;
  position: absolute;
  left: 580px;
  top: 250px;
  width: 0;
  height: 0;
  z-index: 100;
  background: #dfd;
  border: 2px solid #333;
  padding: 20px;
  transform: rotate(-2deg);
  opacity: 0.95;
  border : 5px solid rgba(100,190,100,0.75);
  border-radius : 5px;
  box-shadow: 10px 10px 32px 0px rgba(0,0,0,0.75);
  z-index: 10;
}

