


#bouton1 {
    background-color: #a68061;
    -webkit-border-radius: 10px;
    
    color: #FFFFFF;
    position: static;
    display: inline-block;
    height: auto;
    padding: 1.3em 2em;
    color: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #ffffff;
    font-size: 1.4rem;
    text-indent: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
	transition: all .6s;
	width: 70%;
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
  }
  @-webkit-keyframes glowing {
    0% { background-color: #a68061; -webkit-box-shadow: 0 0 3px #ffffff; }
    50% { background-color: #a68061; -webkit-box-shadow: 0 0 40px #ffffff; }
    100% { background-color: #a68061; -webkit-box-shadow: 0 0 3px #ffffff; }
  }
  
  @-moz-keyframes glowing {
    0% { background-color: #a68061; -moz-box-shadow: 0 0 3px #ffffff1; }
    50% { background-color: #a68061; -moz-box-shadow: 0 0 40px #ffffff; }
    100% { background-color: #a68061; -moz-box-shadow: 0 0 3px #ffffff; }
  }
  
  @-o-keyframes glowing {
    0% { background-color: #a68061; box-shadow: 0 0 3px #ffffff; }
    50% { background-color: #a68061; box-shadow: 0 0 40px #ffffff; }
    100% { background-color: #a68061; box-shadow: 0 0 3px #ffffff; }
  }
  
  @keyframes glowing {
    0% { background-color: #a68061; box-shadow: 0 0 3px #ffffff; }
    50% { background-color: #a68061; box-shadow: 0 0 40px #ffffff; }
    100% { background-color: #a68061; box-shadow: 0 0 3px #ffffff; }
  }