/* Affichage des boutons */

.button1{
  display:inline-block;
  background:url(images/bouton1.png) no-repeat;
  border:none;
  font-family: arial;
  font-size: 18px;
  color: black;
  outline: none;
  text-align: center;
  vertical-align: auto;
  transition: 0.1s;
  width:200px;
  height:40px;
}

.button1:hover {
  background:url(images/bouton1.png) no-repeat;
}

.button1:active {
  transform: scale(0.8);
  color: #00C000;
}

.button2{
  display:inline-block;
  background:url(../images/bouton2.png) no-repeat;
  border:none;
  font-family: arial;
  font-size: 15px;
  color: white;
  outline: none;
  text-align: center;
  vertical-align: bottom;
  transition: 0.1s;
  width:100px;
  height:25px;
}

.button2:hover {
  background:url(../images/bouton2b.png) no-repeat;
}

.button2:active {
  transform: scale(0.8);
  color: #00C000;
}


