@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Freeman&family=Lilita+One&display=swap');
* {
    margin: 0px;
    padding: 0px;
    justify-content: center;
    align-items: center;
}

body{
    background-color: #C49138;
    font-family: "Freeman", sans-serif;
}


/****************************************************** titre ******************************************************/

.titre {
    text-align: center;
    font-size: 7vw;
    width: 0%;
    font-family: "Lilita One", sans-serif;;
}

/****************************************************** Cookie ******************************************************/

.cookie {
    padding: 5%;
    border: 3px #aa771f solid;
    border-radius: 100%;
    background-color: #aa771f;
    cursor: pointer;
    width: 50%;
    transition: transform 0.3s ease;
}

.cookie:hover {
    transform: scale(1.03);
}

.cookie-container {
    text-align: center;
    margin-top: 3%;
    margin-bottom: 3%;
}

/****************************************************** txt nbr de cookie ******************************************************/
.nbrDeCookie {
    display: flex;
}
.cookieTxt {
    height: 3.091vw;
    padding-left: 0.773vw;
}

.nbrCookieTxt {
    font-size: 3.091vw;
    font-family: "Freeman", sans-serif;;
}


/****************************************************** btn d'amélioration  ******************************************************/
.amelioration {
    display: flex;
}

.zone {
    border: 3px #aa771f solid ;
    border-radius: 24px;
    padding: 1.317vw;
    margin: 1.317vw;
    width: 60%;
    text-align: center;
    background-color: #aa771f;
    cursor: pointer;
}


/* btn automatisation */
.automatisation button {
    background-color:#ffe8c1;
    border: none;
    border-radius: 3.333vw;
    width: 50%;
    font-family: "Freeman", sans-serif;;
    padding: 0.658vw;
}

.automatisation button h2 {
    font-weight: 500;
    font-size: 3vw;
}

.automatisation button p {
    font-size: 2.15vw;
}

.automatisation h2 {
    padding-top: 1%;
    transition: transform 0.3s ease;
    font-size: 3vw;
}

.automatisation:hover {
    transform: scale(1.03);
}

/* btn vitesseClique */
.vitesseClique button {
    background-color:#ffe8c1;
    border: none;
    border-radius: 3.333vw;
    width: 50%;
    font-family: "Freeman", sans-serif;;
    padding: 0.658vw;
}

.vitesseClique button h2 {
    font-weight: 500;
    font-size: 3vw;
}

.vitesseClique button p {
    font-size: 2.15vw;
}

.vitesseClique h2 {
    padding-top: 1%;
    transition: transform 0.3s ease;
    font-size: 3vw;
}

.vitesseClique:hover {
    transform: scale(1.03);
}

/* btn NbrCookieParClique */
.NbrCookieParClique button {
    background-color:#ffe8c1;
    border: none;
    border-radius: 3.333vw;
    width: 50%;
    font-family: "Freeman", sans-serif;;
    padding: 0.658vw;
}

.NbrCookieParClique button h2 {
    font-weight: 500;
    font-size: 3vw;
}

.NbrCookieParClique button p {
    font-size: 2.15vw;
}

.NbrCookieParClique h2 {
    padding-top: 1%;
    transition: transform 0.3s ease;
    font-size: 3vw;
}

.NbrCookieParClique:hover {
    transform: scale(1.03);
}

/* animation */

.pulsate-bck {
    animation: pulsate-bck 0.5s ease-in-out both;
}

@keyframes pulsate-bck {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.99);
    }
    100% {
        transform: scale(1);
    }
}
