* {
    font-family: "PoliceAccueil"
}

body{
    background-color: #FFF7E7;
}

/* Paramétrage des Logo */
#bclogo {
    margin-left: 35%;
    margin-right: auto;
    margin-top: 10%;
    /*box-shadow: 0px 0px 30px 25px #C0FEFF ;*/
    border-radius: 20px;
    animation-name: bitlogo;
    animation-duration: 4s;
}

#bcecrit {
    margin-left: 45%;
    margin-right: auto;
    width: 15%;
    margin-top: -200px;
    padding-bottom: 40px;
    opacity: 100%;
    animation-name: bitlogopolice;
    animation-duration: 6s;
}

/* Paramétrage du texte pixélisé */
h2 {
    font-family: "PoliceAccueil", impact;
    font-size: 55px;
    margin-left: 45%;
    margin-right: auto;
    margin-top: -7%;
    opacity: 0%;
    animation-name: bitecrit;
    animation-duration: 2s;
    animation-delay: 4s;
}

/* Configuration des boutons */
.btn {
text-decoration: none;
margin-right: 50px;
padding: 20px;
font-size: 1.2em;
color: #ffffff;
background-color: orange;
border-radius: 25px;
border-radius: 25px;
border: 4px solid #ffffff;
box-shadow: 2px 3px 11px #444444;
box-shadow: 2px 3px 11px #444444;
    
}

#btn1{
    animation-name: btn1;
    animation-duration: 2s;
}

#btn2{
    animation-name: btn1;
    animation-duration: 2s;
    
}

#btn3{
    animation-name: btn1;
    animation-duration: 2s;
    
}
/* Div contenant les 3 boutons */
#bouton{
    text-align: center;
    margin-top: 100px;
}

/* Police personnalisée */
@font-face {
    font-family: "PoliceAccueil";
    src: url("../fonts/Code.ttf");
}

/* Ajout d'animation */
/* Animation du logo texte */
@keyframes bitlogopolice {
    from {
        opacity: 0%;
    }
      93% {
        opacity: 0%
    }
    94% {
        opacity: 100%
    }
    to {
        opacity: 100%;
    }
}

/* Animation du texte */


@keyframes bitecrit {
    from {
        opacity: 20%;
    }
    50% {
        opacity: 100%;
    }
    75% {
        opacity: 100%;
        font-size: 100px;
    }
    79% {
        opacity: 100%;
        font-size: 50px;
    }
   
    80% {
        opacity: 0%;
    }
    to {
        opacity: 0%;
    }
}

/* Animation du logo */
@keyframes bitlogo {
    from {
        margin-left: -25%;
    }
    50% {
        transform: scale(1.3);
    }
    75% {
        transform: scale(1.3);
    }
    80% {
        transform: scale(1.3);
    }
    85% {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Animation des boutons */
@keyframes btn1 {
from {
        margin-left: -25%;
    }
    50% {
        transform: scale(1.3);
    }
    75% {
        transform: scale(1.3);
    }
    80% {
        transform: scale(1.3);
    }
    85% {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}
