#titre {
  text-align : center;
  margin-bottom : 10px;
}

section
{
  display : block;
} 

.accordion
{
  width : 90%;
  padding : 10px;
}
 
.accordion h2 a 
{
  display : block;
  position : relative;
  padding : 10px;
  text-decoration : none;
  border-radius : 5px;
  text-align : center;
  background-color : #0033CC;
  color : #fff;
}
 
.accordion h2 + div 
{
  height : 0;
  overflow : hidden;
  -o-transition : height 0.3s ease-in-out;
}

.accordion :target h2 + div 
{
  height : 160px;
}