@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");


body {
    height: 100vh;
    font-family: "Poppins", sans-serif;
    background-color: #e7ebee;
    margin: 0;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 10% 80% 10%;
    grid-template-areas:
        "akwaba"
        "principal"
        "piedPage"
    ;

}

.akwaba {
    grid-area: akwaba;
    color: #ffff;
    font-size: 2.5rem;
    text-align: center;
}


.principal {
    grid-area: principal;

    display: grid;
    place-items: center;
}

.piedPage {
    grid-area: piedPage;

    display: grid;
    place-items: center;
}


.zoneA {
    background: linear-gradient(329deg, rgba(7, 204, 7, 1) 1%, rgba(8, 86, 127, 1) 50%);

    width: 70%;
    height: 75vh;
 
    border-radius: 20px;
    display: grid;
    place-items: center;
    grid-template-columns: 100%;
    grid-template-rows: 20% 40% 10% 10% 10%;
    grid-template-areas:
        "titreA"
        "logo"
        "mesBienvenue"
        "platform"
        "loadbar"
    ;
}

.loading {
    margin-bottom: 5px;
    color: #fff;
    font-size: 0.5em;
    font-weight: 200;
}


.titreA {
    grid-area: titreA;
    font-size: 3rem;
    color: #fff;
    text-align: center;
}

.logo {
    grid-area: logo;
    width: 8rem;
}

.loadbar {
    grid-area: loadbar;
    height: 3px;
    width: 250px;
    background: #444444;
    border-radius: 14px;
}

.mesBienvenue {
    grid-area: mesBienvenue;
    font-size: 1rem;
    color: #fff;
    text-align: center;
    font-weight: 200;
}

.platform {
    grid-area: platform;
    font-size: 2.5rem;
    color: #07cc07;
    font-weight: 200;
    background-color: #0a577e;

    padding-left: 30px;
    padding-right: 30px;
    border-radius: 50px;

}

.piedPage {
    color: antiquewhite;
    text-align: center;
    font-size: 1rem;
    font-weight: 200;
}

.loading {
    margin-bottom: 5px;
    color: #fff;
    font-size: 0.5em;
    font-weight: 200;
}

.loadbar {
    height: 3px;
    width: 250px;
    background: #444444;
    border-radius: 14px;
}

.loadbar::before {
    content: '';
    position: absolute;
    height: 3px;
    width: 0px;
    background: #38e60d;
    border-radius: 12px;
    animation: loading 5.5s linear forwards;
}

@keyframes loading {
    100% {
        width: 250px;
    }
}

.count {
    margin-top: 15px;
    position: relative;
    width: 100%;
    text-align: center;
    color: #38e60d;
    font-size: 0.7em;
    font-weight: 100;
}

@media only screen and (max-width : 1280px) {
    .zoneA {
        width: 90%;
        height: 75vh;
        background-color: #0a577e;
        border-radius: 20px;
        margin: 20px;
    }



}




@media only screen and (max-width : 768px) {


    .zoneA {
        background-color: #0a577e;
        width: 95%;
        height: 75vh;
        box-shadow: 2px 2px 2px #043d5a;
        border-radius: 20px;
        display: grid;
        place-items: center;
        grid-template-columns: 100%;
        grid-template-rows: 50% 25% 10% 10%;
        grid-template-areas:
            "logo"
            "mesBienvenue"
            "platform"
            "loadbar"
        ;
    }


    .piedPage {
        color: antiquewhite;
        text-align: center;
        font-size: 0.7rem;
        font-weight: 200;
    }


    .mesBienvenue {
        grid-area: mesBienvenue;
        font-size: 1rem;
        color: #fff;
        text-align: center;
        font-weight: 200;
    }


    .loadbar {
        grid-area: loadbar;
        height: 3px;
        width: 250px;
        background: #444444;
        border-radius: 14px;
    }


    .platform {
        grid-area: platform;
        font-size: 2rem;
        color: #07cc07;
        font-weight: 200;
        padding-left: 30px;
        padding-right: 30px;
        border-radius: 50px;
    }


}