body {
    background-color : #DD985C; 
}




.logo { 
	display : block;
	margin-top : 2%;
	margin-left: auto;/* permet de centrer l'image*/
	margin-right: auto; /* permet de centrer l'image*/
	width: 55%;
}


.bouton {
    
    margin-top: 8%;
    color: black;
    text-align: center;
	font-size: 40px;
	font-weight: bold;
    cursor: pointer;
    animation: fadeInOut infinite 2s ease-out; /* donne le type d'animation*/
	
}

@keyframes fadeInOut {       /* effectue l'animation */
      0%, 100% {
        opacity: 0;
      }

      50% {
        opacity: 1;
      }
    }
	
	
	
#cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #9b592a;
    
    text-align: center;
    padding: 10px;
    display: none;
	z-index: 999;
}

#cookie p {
    display: inline;
    margin: 0;
	color : black;
	
}




#bouttonaccepter {
    background: #7E7E7E;
    color: black;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
	
}